找回密码
 欢迎注册
楼主: mathematica

[灌水] 又遇上了mathematica的bug

[复制链接]
发表于 2020-6-3 13:38:22 | 显示全部楼层
本帖最后由 chyanog 于 2020-6-3 13:50 编辑

解析解也可以用Mathematica算出来
  1. f = Sqrt[x^2+y^2]+Sqrt[(x-4)^2+y^2]+Sqrt[(x-xe)^2+(y-ye)^2];
  2. cons = 20-6 xe+xe^2-8 ye+ye^2;
  3. grad = D[f + k cons,{{x,y,xe,ye,k}}]
  4. sol = Solve[GroebnerBasis[grad]==0,{x,y,xe,ye,k}]//FullSimplify
  5. f/.sol//FullSimplify
  6. N[%,16]
复制代码

最小值为
\(\sqrt{34+16 \sqrt{3}-2 \sqrt{5 \left(29+16 \sqrt{3}\right)}}=\sqrt{16 \sqrt{3}+29}-\sqrt{5}\approx 5.2947230115731401311\)

\(\left\{x\to \frac{2}{219} \left(80 \sqrt{3}+147\right),y\to \frac{1}{219} \left(384-86 \sqrt{3}\right),\text{xe}\to 3-\sqrt{\frac{5}{73} \left(29-16 \sqrt{3}\right)},\text{ye}\to 4-2 \sqrt{\frac{5}{73} \left(4 \sqrt{3}+11\right)},k\to \frac{1}{2 \sqrt{5}}\right\}\)

点评

你的代码太牛逼了,回车键很快就出结果,我的要运行很长时间,看来你说的要减少变量个数是对的  发表于 2020-6-3 14:57
还是你牛逼  发表于 2020-6-3 14:54
我的代码虽然算出了结果,真的是又臭又长,唯一的优点是傻子都能读懂我的代码  发表于 2020-6-3 14:41
还是你的代码好!  发表于 2020-6-3 14:40
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
 楼主| 发表于 2020-6-3 13:49:11 | 显示全部楼层
chyanog 发表于 2020-6-3 13:38
解析解也可以用Mathematica算出来

最小值为

sol=Solve[GroebnerBasis[grad]==0,{x,y,xe,ye,k}]//FullSimplify
为什么用这个能求解出来?
而用
sol=Solve[grad=={0,0,0,0,0},{x,y,xe,ye,k}]//FullSimplify
求解不出来?
还有,为什么你求解出来的结果,为什么是两个?
另一个结果是什么意思?
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
发表于 2020-6-3 13:54:10 | 显示全部楼层
本帖最后由 chyanog 于 2020-6-3 14:04 编辑
mathematica 发表于 2020-6-3 13:49
sol=Solve[GroebnerBasis[grad]==0,{x,y,xe,ye,k}]//FullSimplify
为什么用这个能求解出来?
而用


4# lsr314的图中,直线DK与圆有两个交点,求解出来的恰好包括这两个交点

点评

我用拉格朗日乘子法,解方程组,也求解出来了问题的回答了!  发表于 2020-6-3 14:21
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
 楼主| 发表于 2020-6-3 14:14:17 | 显示全部楼层
chyanog 发表于 2020-6-3 13:54
4# lsr314的图中,直线DK与圆有两个交点,求解出来的恰好包括这两个交点

sol=Solve[GroebnerBasis[grad]==0,{x,y,xe,ye,k}]//FullSimplify
为什么用这个能求解出来?
而用
sol=Solve[grad=={0,0,0,0,0},{x,y,xe,ye,k}]//FullSimplify
求解不出来?
这个问题呢?
GroebnerBasis这个函数特殊在什么地方?
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
 楼主| 发表于 2020-6-3 14:18:50 | 显示全部楼层
本帖最后由 mathematica 于 2020-6-3 14:27 编辑
chyanog 发表于 2020-6-3 13:54
4# lsr314的图中,直线DK与圆有两个交点,求解出来的恰好包括这两个交点

  1. (*利用拉格朗日乘子法解决问题*)
  2. Clear["Global`*"];(*Clear all variables*)
  3. (*初始变量赋值*)
  4. {xa,ya}={1,3}
  5. {xb,yb}={0,0}
  6. {xc,yc}={4,0}
  7. {xd,yd}={4,2}
  8. (*利用斜率,得到135°这个约数条件,得到第一个约数条件*)
  9. k1=(yd-ye)/(xd-xe)
  10. k2=(ya-ye)/(xa-xe)
  11. (*只有分子是有用的*)
  12. cons=(k2-k1)/(1+k1*k2)+1//Together//Numerator
  13. (*目标函数*)
  14. f=MB+MC+ME+x1*((x-xb)^2+(y-yb)^2-MB^2)+x2*((x-xc)^2+(y-yc)^2-MC^2)+x3*((x-xe)^2+(y-ye)^2-ME^2)+x4*cons
  15. (*对所有的目标函数求导数,然后解方程组,只选出那些距离非负数的解,并且化简*)
  16. ans=Solve[D[f,{{xe,ye,x,y,MB,MC,ME,x1,x2,x3,x4}}]=={0,0,0,0,0,0,0,0,0,0,0},{xe,ye,x,y,MB,MC,ME,x1,x2,x3,x4}]//FullSimplify
  17. ans//Grid
  18. (*数值化求解结果*)
  19. ansN=N[ans,10]//Grid
  20. aaa=f/.ans//FullSimplify
  21. N[aaa,20]
复制代码


求解结果:
\[\begin{array}{ccccccccccc}
\text{xe}\to \sqrt{\frac{5}{73} \left(16 \sqrt{3}+29\right)}+3 & \text{ye}\to 2 \left(\sqrt{\frac{5}{73} \left(11-4 \sqrt{3}\right)}+2\right) & x\to \frac{2}{219} \left(147-80 \sqrt{3}\right) & y\to \frac{2}{219} \left(43 \sqrt{3}+192\right) & \text{MB}\to -4 \sqrt{\frac{1}{219} \left(95-8 \sqrt{3}\right)} & \text{MC}\to 4 \sqrt{\frac{1}{219} \left(72 \sqrt{3}+167\right)} & \text{ME}\to -\sqrt{\frac{2}{219} \left(72 \sqrt{3}+\sqrt{1095 \left(144 \sqrt{3}+2159\right)}+1627\right)} & \text{x1}\to -\frac{1}{88} \sqrt{3 \left(8 \sqrt{3}+95\right)} & \text{x2}\to \frac{1}{104} \sqrt{501-216 \sqrt{3}} & \text{x3}\to -\frac{\sqrt{\frac{3}{2} \left(-88308 \sqrt{3}-\sqrt{169134722625-66936841560 \sqrt{3}}+401743\right)}}{1832} & \text{x4}\to \frac{1}{2 \sqrt{5}} \\
\text{xe}\to \sqrt{\frac{5}{73} \left(16 \sqrt{3}+29\right)}+3 & \text{ye}\to 2 \left(\sqrt{\frac{5}{73} \left(11-4 \sqrt{3}\right)}+2\right) & x\to \frac{2}{219} \left(147-80 \sqrt{3}\right) & y\to \frac{2}{219} \left(43 \sqrt{3}+192\right) & \text{MB}\to 4 \sqrt{\frac{1}{219} \left(95-8 \sqrt{3}\right)} & \text{MC}\to -4 \sqrt{\frac{1}{219} \left(72 \sqrt{3}+167\right)} & \text{ME}\to \sqrt{\frac{2}{219} \left(72 \sqrt{3}+\sqrt{1095 \left(144 \sqrt{3}+2159\right)}+1627\right)} & \text{x1}\to \frac{1}{88} \sqrt{3 \left(8 \sqrt{3}+95\right)} & \text{x2}\to -\frac{1}{104} \sqrt{501-216 \sqrt{3}} & \text{x3}\to \frac{\sqrt{\frac{3}{2} \left(-88308 \sqrt{3}-\sqrt{169134722625-66936841560 \sqrt{3}}+401743\right)}}{1832} & \text{x4}\to -\frac{1}{2 \sqrt{5}} \\
\text{xe}\to \text{Root}\left[73 \text{$\#$1}^4-290 \text{$\#$1}^2+25\&,1\right]+3 & \text{ye}\to 4-2 \sqrt{\frac{5}{73} \left(11-4 \sqrt{3}\right)} & x\to \frac{2}{219} \left(147-80 \sqrt{3}\right) & y\to \frac{2}{219} \left(43 \sqrt{3}+192\right) & \text{MB}\to -4 \sqrt{\frac{1}{219} \left(95-8 \sqrt{3}\right)} & \text{MC}\to 4 \sqrt{\frac{1}{219} \left(72 \sqrt{3}+167\right)} & \text{ME}\to -\sqrt{\frac{2}{219} \left(72 \sqrt{3}-\sqrt{1095 \left(144 \sqrt{3}+2159\right)}+1627\right)} & \text{x1}\to -\frac{1}{88} \sqrt{3 \left(8 \sqrt{3}+95\right)} & \text{x2}\to \frac{1}{104} \sqrt{501-216 \sqrt{3}} & \text{x3}\to -\frac{\sqrt{\frac{3}{2} \left(-88308 \sqrt{3}+\sqrt{169134722625-66936841560 \sqrt{3}}+401743\right)}}{1832} & \text{x4}\to -\frac{1}{2 \sqrt{5}} \\
\text{xe}\to \text{Root}\left[73 \text{$\#$1}^4-290 \text{$\#$1}^2+25\&,1\right]+3 & \text{ye}\to 4-2 \sqrt{\frac{5}{73} \left(11-4 \sqrt{3}\right)} & x\to \frac{2}{219} \left(147-80 \sqrt{3}\right) & y\to \frac{2}{219} \left(43 \sqrt{3}+192\right) & \text{MB}\to 4 \sqrt{\frac{1}{219} \left(95-8 \sqrt{3}\right)} & \text{MC}\to -4 \sqrt{\frac{1}{219} \left(72 \sqrt{3}+167\right)} & \text{ME}\to \sqrt{\frac{2}{219} \left(72 \sqrt{3}-\sqrt{1095 \left(144 \sqrt{3}+2159\right)}+1627\right)} & \text{x1}\to \frac{1}{88} \sqrt{3 \left(8 \sqrt{3}+95\right)} & \text{x2}\to -\frac{1}{104} \sqrt{501-216 \sqrt{3}} & \text{x3}\to \frac{\sqrt{\frac{3}{2} \left(-88308 \sqrt{3}+\sqrt{169134722625-66936841560 \sqrt{3}}+401743\right)}}{1832} & \text{x4}\to \frac{1}{2 \sqrt{5}} \\
\text{xe}\to \sqrt{\frac{5}{73} \left(29-16 \sqrt{3}\right)}+3 & \text{ye}\to 2 \left(\sqrt{\frac{5}{73} \left(4 \sqrt{3}+11\right)}+2\right) & x\to \frac{2}{219} \left(80 \sqrt{3}+147\right) & y\to \frac{1}{219} \left(384-86 \sqrt{3}\right) & \text{MB}\to -4 \sqrt{\frac{1}{219} \left(8 \sqrt{3}+95\right)} & \text{MC}\to -4 \sqrt{\frac{1}{219} \left(167-72 \sqrt{3}\right)} & \text{ME}\to -\sqrt{\frac{2}{219} \left(-72 \sqrt{3}+\sqrt{1095 \left(2159-144 \sqrt{3}\right)}+1627\right)} & \text{x1}\to -\frac{1}{88} \sqrt{3 \left(95-8 \sqrt{3}\right)} & \text{x2}\to -\frac{1}{104} \sqrt{216 \sqrt{3}+501} & \text{x3}\to -\frac{\sqrt{\frac{3}{2} \left(88308 \sqrt{3}-\sqrt{66936841560 \sqrt{3}+169134722625}+401743\right)}}{1832} & \text{x4}\to \frac{1}{2 \sqrt{5}} \\
\text{xe}\to \sqrt{\frac{5}{73} \left(29-16 \sqrt{3}\right)}+3 & \text{ye}\to 2 \left(\sqrt{\frac{5}{73} \left(4 \sqrt{3}+11\right)}+2\right) & x\to \frac{2}{219} \left(80 \sqrt{3}+147\right) & y\to \frac{1}{219} \left(384-86 \sqrt{3}\right) & \text{MB}\to 4 \sqrt{\frac{1}{219} \left(8 \sqrt{3}+95\right)} & \text{MC}\to 4 \sqrt{\frac{1}{219} \left(167-72 \sqrt{3}\right)} & \text{ME}\to \sqrt{\frac{2}{219} \left(-72 \sqrt{3}+\sqrt{1095 \left(2159-144 \sqrt{3}\right)}+1627\right)} & \text{x1}\to \frac{1}{88} \sqrt{3 \left(95-8 \sqrt{3}\right)} & \text{x2}\to \frac{1}{104} \sqrt{216 \sqrt{3}+501} & \text{x3}\to \frac{\sqrt{\frac{3}{2} \left(88308 \sqrt{3}-\sqrt{66936841560 \sqrt{3}+169134722625}+401743\right)}}{1832} & \text{x4}\to -\frac{1}{2 \sqrt{5}} \\
\text{xe}\to \text{Root}\left[73 \text{$\#$1}^4-290 \text{$\#$1}^2+25\&,2\right]+3 & \text{ye}\to 4-2 \sqrt{\frac{5}{73} \left(4 \sqrt{3}+11\right)} & x\to \frac{2}{219} \left(80 \sqrt{3}+147\right) & y\to \frac{1}{219} \left(384-86 \sqrt{3}\right) & \text{MB}\to -4 \sqrt{\frac{1}{219} \left(8 \sqrt{3}+95\right)} & \text{MC}\to -4 \sqrt{\frac{1}{219} \left(167-72 \sqrt{3}\right)} & \text{ME}\to -\sqrt{\frac{2}{219} \left(-72 \sqrt{3}-\sqrt{1095 \left(2159-144 \sqrt{3}\right)}+1627\right)} & \text{x1}\to -\frac{1}{88} \sqrt{3 \left(95-8 \sqrt{3}\right)} & \text{x2}\to -\frac{1}{104} \sqrt{216 \sqrt{3}+501} & \text{x3}\to -\frac{\sqrt{\frac{3}{2} \left(88308 \sqrt{3}+\sqrt{66936841560 \sqrt{3}+169134722625}+401743\right)}}{1832} & \text{x4}\to -\frac{1}{2 \sqrt{5}} \\
\text{xe}\to \text{Root}\left[73 \text{$\#$1}^4-290 \text{$\#$1}^2+25\&,2\right]+3 & \text{ye}\to 4-2 \sqrt{\frac{5}{73} \left(4 \sqrt{3}+11\right)} & x\to \frac{2}{219} \left(80 \sqrt{3}+147\right) & y\to \frac{1}{219} \left(384-86 \sqrt{3}\right) & \text{MB}\to 4 \sqrt{\frac{1}{219} \left(8 \sqrt{3}+95\right)} & \text{MC}\to 4 \sqrt{\frac{1}{219} \left(167-72 \sqrt{3}\right)} & \text{ME}\to \sqrt{\frac{2}{219} \left(-72 \sqrt{3}-\sqrt{1095 \left(2159-144 \sqrt{3}\right)}+1627\right)} & \text{x1}\to \frac{1}{88} \sqrt{3 \left(95-8 \sqrt{3}\right)} & \text{x2}\to \frac{1}{104} \sqrt{216 \sqrt{3}+501} & \text{x3}\to \frac{\sqrt{\frac{3}{2} \left(88308 \sqrt{3}+\sqrt{66936841560 \sqrt{3}+169134722625}+401743\right)}}{1832} & \text{x4}\to \frac{1}{2 \sqrt{5}} \\
\end{array}
\]
数值化的结果
  1. xe->4.970898080        ye->5.056201098        x->0.07704050589        y->2.433590728        MB->-2.434809863        MC->4.616489470        ME->-5.552290258        x1->-0.2053548441        x2->0.1083074062        x3->-0.09005292894        x4->0.2236067977
  2. xe->4.970898080        ye->5.056201098        x->0.07704050589        y->2.433590728        MB->2.434809863        MC->-4.616489470        ME->5.552290258        x1->0.2053548441        x2->-0.1083074062        x3->0.09005292894        x4->-0.2236067977
  3. xe->1.029101920        ye->2.943798902        x->0.07704050589        y->2.433590728        MB->-2.434809863        MC->4.616489470        ME->-1.080154303        x1->-0.2053548441        x2->0.1083074062        x3->-0.4628968276        x4->-0.2236067977
  4. xe->1.029101920        ye->2.943798902        x->0.07704050589        y->2.433590728        MB->2.434809863        MC->-4.616489470        ME->1.080154303        x1->0.2053548441        x2->-0.1083074062        x3->0.4628968276        x4->0.2236067977
  5. xe->3.296923388        ye->6.216266343        x->2.607891001        y->1.073258587        MB->-2.820102741        MC->-1.757797332        ME->-5.188958894        x1->-0.1772985051        x2->-0.2844468989        x3->-0.09635844303        x4->0.2236067977
  6. xe->3.296923388        ye->6.216266343        x->2.607891001        y->1.073258587        MB->2.820102741        MC->1.757797332        ME->5.188958894        x1->0.1772985051        x2->0.2844468989        x3->0.09635844303        x4->-0.2236067977
  7. xe->2.703076612        ye->1.783733657        x->2.607891001        y->1.073258587        MB->-2.820102741        MC->-1.757797332        ME->-0.7168229392        x1->-0.1772985051        x2->-0.2844468989        x3->-0.6975223206        x4->-0.2236067977
  8. xe->2.703076612        ye->1.783733657        x->2.607891001        y->1.073258587        MB->2.820102741        MC->1.757797332        ME->0.7168229392        x1->0.1772985051        x2->0.2844468989        x3->0.6975223206        x4->0.2236067977
复制代码




极值情况
\[\left\{-\sqrt{2 \left(-8 \sqrt{3}+\sqrt{145-80 \sqrt{3}}+17\right)},\sqrt{2 \left(-8 \sqrt{3}+\sqrt{145-80 \sqrt{3}}+17\right)},\sqrt{-16 \sqrt{3}-2 \sqrt{145-80 \sqrt{3}}+34},-\sqrt{-16 \sqrt{3}-2 \sqrt{145-80 \sqrt{3}}+34},-\sqrt{2 \left(8 \sqrt{3}+\sqrt{80 \sqrt{3}+145}+17\right)},\sqrt{2 \left(8 \sqrt{3}+\sqrt{80 \sqrt{3}+145}+17\right)},-\sqrt{16 \sqrt{3}-2 \sqrt{80 \sqrt{3}+145}+34},\sqrt{16 \sqrt{3}-2 \sqrt{80 \sqrt{3}+145}+34}\right\}\]
数值化后
{-3.3706106513988208313,3.3706106513988208313,1.1015253036007585615,-1.1015253036007585615,-9.7668589665727195239,9.7668589665727195239,-5.2947230115731401311,5.2947230115731401311}

由于MB MC ME距离都是非负数,所以只有
第六与第八个结果有意义,
没想到mathematica也能把这方程组求解出来!

点评

代码改成下面的更好ans=Solve[D[f,{{xe,ye,x,y,MB,MC,ME,x1,x2,x3,x4}}]==0,{xe,ye,x,y,MB,MC,ME,x1,x2,x3,x4}]//FullSimplify  发表于 2020-6-3 14:31
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
 楼主| 发表于 2020-6-3 14:49:16 | 显示全部楼层
本帖最后由 mathematica 于 2020-6-3 15:09 编辑
chyanog 发表于 2020-6-3 13:38
解析解也可以用Mathematica算出来

最小值为


帮你把你的代码完整化
  1. (*利用拉格朗日乘子法解决问题*)
  2. Clear["Global`*"];(*Clear all variables*)
  3. (*初始变量赋值*)
  4. {xa,ya}={1,3}
  5. {xb,yb}={0,0}
  6. {xc,yc}={4,0}
  7. {xd,yd}={4,2}
  8. (*利用斜率,得到135°这个约数条件,得到第一个约数条件*)
  9. k1=(yd-ye)/(xd-xe)
  10. k2=(ya-ye)/(xa-xe)
  11. (*只有分子是有用的,形成约束条件*)
  12. cons=(k2-k1)/(1+k1*k2)+1//Together//Numerator
  13. (*目标函数*)
  14. f=Sqrt[x^2+y^2]+Sqrt[(x-4)^2+y^2]+Sqrt[(x-xe)^2+(y-ye)^2];
  15. (*加上约束条件,求解偏导数*)
  16. grad=D[f+k*cons,{{x,y,xe,ye,k}}]
  17. (*利用GroebnerBasis求解方程组,这样求解快,具体快的原因不知道*)
  18. ans=Solve[GroebnerBasis[grad]==0,{x,y,xe,ye,k}]//FullSimplify
  19. ans//ToRadicals//Grid
  20. (*数值化*)
  21. N[ans//Grid,20]
  22. aaa=f/.ans//FullSimplify
  23. (*数值化*)
  24. N[aaa,20]
复制代码

方程组求解结果
\[
\begin{array}{ccccc}
x\to \frac{2}{219} \left(80 \sqrt{3}+147\right) & y\to \frac{1}{219} \left(384-86 \sqrt{3}\right) & \text{xe}\to 3-\sqrt{\frac{5}{73} \left(29-16 \sqrt{3}\right)} & \text{ye}\to 4-2 \sqrt{\frac{5}{73} \left(4 \sqrt{3}+11\right)} & k\to \frac{1}{2 \sqrt{5}} \\
x\to \frac{2}{219} \left(80 \sqrt{3}+147\right) & y\to \frac{1}{219} \left(384-86 \sqrt{3}\right) & \text{xe}\to \sqrt{\frac{5}{73} \left(29-16 \sqrt{3}\right)}+3 & \text{ye}\to 2 \left(\sqrt{\frac{5}{73} \left(4 \sqrt{3}+11\right)}+2\right) & k\to -\frac{1}{2 \sqrt{5}} \\
\end{array}
\]

数值化
x->2.6078910009635633195        y->1.0732585869820847158        xe->2.7030766116408897290        ye->1.7837336573765902675        k->0.22360679774997896964
x->2.6078910009635633195        y->1.0732585869820847158        xe->3.2969233883591102710        ye->6.2162663426234097325        k->-0.22360679774997896964



目标函数值
\[\left\{\sqrt{16 \sqrt{3}-2 \sqrt{80 \sqrt{3}+145}+34},\sqrt{2 \left(8 \sqrt{3}+\sqrt{80 \sqrt{3}+145}+17\right)}\right\}\]
数值化
{5.2947230115731401311,9.7668589665727195239}
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
发表于 2020-6-3 15:16:18 | 显示全部楼层
lsr314 发表于 2020-6-2 14:23
这道题和https://bbs.emath.ac.cn/thread-17297-1-1.html完全一样,就是求一点使之到两点和一圆的圆心距离 ...

H同时也是三角形GFD的费马点
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
发表于 2020-6-3 15:24:56 | 显示全部楼层
可以有吗?详见 1 #

\(BC=2\ \ \ \ \ \ CD=4\ \ \ \ AB=\sqrt{10}\)

\(\tan∠ABC=3\ \ \ ∠BCD=90^\circ\ \ \ ∠AED=135^\circ\)

M 为任意一点,MB+MC+ME 的最小值为?
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
发表于 2020-6-3 15:49:10 | 显示全部楼层
三角形三个角都小于120°的情况下,费马点到三个顶点的距离之和为$L=sqrt((a^2+b^2+c^2)/2+2sqrt(3)S)$.
本题$a=4,b=sqrt(17),c=5,S=4*4/2=8$,代入即可。
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
发表于 2020-6-3 16:03:52 | 显示全部楼层
王守恩 发表于 2020-6-3 15:24
可以有吗?详见 1 #

\(BC=2\ \ \ \ \ \ CD=4\ \ \ \ AB=\sqrt{10}\)

公式参考我上一个回复,结果为$sqrt(19+8sqrt(3))-1$

点评

还在耿耿于怀?丢了!没有答案的。  发表于 2020-6-4 20:07
高论  发表于 2020-6-4 15:58
我们追求的是思路,不是答案。  发表于 2020-6-4 08:26
我知道公式不能用,答案是什么 M在哪里,最小值是多少? 很简单!  发表于 2020-6-4 08:17
思路在4楼:已知AB,已知∠AEB(不定135°),可得∠ADB(不定90°),半径,圆心位置。  发表于 2020-6-4 08:05
毋因群疑而阻独见  毋任己意而废人言
毋私小惠而伤大体  毋借公论以快私情
您需要登录后才可以回帖 登录 | 欢迎注册

本版积分规则

小黑屋|手机版|数学研发网 ( 苏ICP备07505100号 )

GMT+8, 2024-4-20 12:30 , Processed in 0.045449 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表