- 注册时间
- 2008-11-26
- 最后登录
- 1970-1-1
- 威望
- 星
- 金币
- 枚
- 贡献
- 分
- 经验
- 点
- 鲜花
- 朵
- 魅力
- 点
- 上传
- 次
- 下载
- 次
- 积分
- 149497
- 在线时间
- 小时
|
楼主 |
发表于 2021-1-25 08:38:06
|
显示全部楼层
利用面积也能做出来
- (*初中几何题,等边三角形求角度*)
- (*https://bbs.emath.ac.cn/thread-15753-1-1.html*)
- Clear["Global`*"];(*mathematica11.2,win7(64bit)Clear all variables*)
- (*海伦公式*)
- heron[a_,b_,c_]:=Module[{p=(a+b+c)/2},Sqrt[p*(p-a)*(p-b)*(p-c)]]
- (*做面积差*)
- mj=heron[a,a,a]-x1*heron[3,4,a]-x2*heron[3,5,a]-x3*heron[4,5,a]
- (*x1 x 2x3可以是正负1*)
- ans=Solve[mj==0&&x1^2==1&&x2^2==1&&x3^2==1&&a>=0,{a,x1,x2,x3}]//FullSimplify;
- aaa=Grid@ans
- bbb=N@aaa
复制代码
求解结果
\[\begin{array}{llll}
a\to 0 & \text{x1}\to -1 & \text{x2}\to 1 & \text{x3}\to -1 \\
a\to 0 & \text{x1}\to 1 & \text{x2}\to -1 & \text{x3}\to 1 \\
a\to \sqrt{25-12 \sqrt{3}} & \text{x1}\to -1 & \text{x2}\to 1 & \text{x3}\to 1 \\
a\to \sqrt{12 \sqrt{3}+25} & \text{x1}\to 1 & \text{x2}\to 1 & \text{x3}\to 1 \\
a\to \text{Root}\left[3 \text{$\#$1}^8-150 \text{$\#$1}^6+2500 \text{$\#$1}^4-16850 \text{$\#$1}^2+51361\&,3\right] & \text{x1}\to 1 & \text{x2}\to -1 & \text{x3}\to 1 \\
a\to \text{Root}\left[3 \text{$\#$1}^8-150 \text{$\#$1}^6+2500 \text{$\#$1}^4-16850 \text{$\#$1}^2+51361\&,4\right] & \text{x1}\to -1 & \text{x2}\to 1 & \text{x3}\to 1 \\
\end{array}\]
数值化
\[\begin{array}{llll}
a\to 0. & \text{x1}\to -1. & \text{x2}\to 1. & \text{x3}\to -1. \\
a\to 0. & \text{x1}\to 1. & \text{x2}\to -1. & \text{x3}\to 1. \\
a\to 2.05314 & \text{x1}\to -1. & \text{x2}\to 1. & \text{x3}\to 1. \\
a\to 6.76643 & \text{x1}\to 1. & \text{x2}\to 1. & \text{x3}\to 1. \\
a\to 4.16543 & \text{x1}\to 1. & \text{x2}\to -1. & \text{x3}\to 1. \\
a\to 4.78192 & \text{x1}\to -1. & \text{x2}\to 1. & \text{x3}\to 1. \\
\end{array}\] |
|