- 注册时间
- 2008-11-26
- 最后登录
- 1970-1-1
- 威望
- 星
- 金币
- 枚
- 贡献
- 分
- 经验
- 点
- 鲜花
- 朵
- 魅力
- 点
- 上传
- 次
- 下载
- 次
- 积分
- 149507
- 在线时间
- 小时
|
发表于 2020-9-10 08:16:38
|
显示全部楼层
- Clear["Global`*"];
- (*三角函数展开,并且替换掉正弦函数余弦函数*)
- fun:=TrigExpand[Sin[a+b+c]]/.{Sin[a]->s1,Cos[a]->c1,Sin[b]->s2,Cos[b]->c2,Sin[c]->s3,Cos[c]->c3}
- ans=FullSimplify@Solve[{
- s1==1*s+1&&
- s2==3*s+2&&
- s3==5*s+3&&
- (*正弦余弦的平方和等于1*)
- s1^2+c1^2==1&&
- s2^2+c2^2==1&&
- s3^2+c3^2==1&&
- s==fun
- },
- {s,s1,s2,s3,c1,c2,c3}
- ]
- Grid[ans]
复制代码
求解结果
\[
\begin{array}{ccccccc}
s\to -\frac{3}{4} & \text{s1}\to \frac{1}{4} & \text{s2}\to -\frac{1}{4} & \text{s3}\to -\frac{3}{4} & \text{c1}\to -\frac{\sqrt{15}}{4} & \text{c2}\to -\frac{\sqrt{15}}{4} & \text{c3}\to -\frac{\sqrt{7}}{4} \\
s\to -\frac{3}{4} & \text{s1}\to \frac{1}{4} & \text{s2}\to -\frac{1}{4} & \text{s3}\to -\frac{3}{4} & \text{c1}\to -\frac{\sqrt{15}}{4} & \text{c2}\to -\frac{\sqrt{15}}{4} & \text{c3}\to \frac{\sqrt{7}}{4} \\
s\to -\frac{3}{4} & \text{s1}\to \frac{1}{4} & \text{s2}\to -\frac{1}{4} & \text{s3}\to -\frac{3}{4} & \text{c1}\to \frac{\sqrt{15}}{4} & \text{c2}\to \frac{\sqrt{15}}{4} & \text{c3}\to -\frac{\sqrt{7}}{4} \\
s\to -\frac{3}{4} & \text{s1}\to \frac{1}{4} & \text{s2}\to -\frac{1}{4} & \text{s3}\to -\frac{3}{4} & \text{c1}\to \frac{\sqrt{15}}{4} & \text{c2}\to \frac{\sqrt{15}}{4} & \text{c3}\to \frac{\sqrt{7}}{4} \\
s\to -\frac{1}{2} & \text{s1}\to \frac{1}{2} & \text{s2}\to \frac{1}{2} & \text{s3}\to \frac{1}{2} & \text{c1}\to -\frac{\sqrt{3}}{2} & \text{c2}\to -\frac{\sqrt{3}}{2} & \text{c3}\to \frac{\sqrt{3}}{2} \\
s\to -\frac{1}{2} & \text{s1}\to \frac{1}{2} & \text{s2}\to \frac{1}{2} & \text{s3}\to \frac{1}{2} & \text{c1}\to -\frac{\sqrt{3}}{2} & \text{c2}\to \frac{\sqrt{3}}{2} & \text{c3}\to -\frac{\sqrt{3}}{2} \\
s\to -\frac{1}{2} & \text{s1}\to \frac{1}{2} & \text{s2}\to \frac{1}{2} & \text{s3}\to \frac{1}{2} & \text{c1}\to -\frac{\sqrt{3}}{2} & \text{c2}\to \frac{\sqrt{3}}{2} & \text{c3}\to \frac{\sqrt{3}}{2} \\
s\to -\frac{1}{2} & \text{s1}\to \frac{1}{2} & \text{s2}\to \frac{1}{2} & \text{s3}\to \frac{1}{2} & \text{c1}\to \frac{\sqrt{3}}{2} & \text{c2}\to -\frac{\sqrt{3}}{2} & \text{c3}\to -\frac{\sqrt{3}}{2} \\
s\to -\frac{1}{2} & \text{s1}\to \frac{1}{2} & \text{s2}\to \frac{1}{2} & \text{s3}\to \frac{1}{2} & \text{c1}\to \frac{\sqrt{3}}{2} & \text{c2}\to -\frac{\sqrt{3}}{2} & \text{c3}\to \frac{\sqrt{3}}{2} \\
s\to -\frac{1}{2} & \text{s1}\to \frac{1}{2} & \text{s2}\to \frac{1}{2} & \text{s3}\to \frac{1}{2} & \text{c1}\to \frac{\sqrt{3}}{2} & \text{c2}\to \frac{\sqrt{3}}{2} & \text{c3}\to -\frac{\sqrt{3}}{2} \\
\end{array}
\]
mathematica吊打这类问题,方程思想万岁! |
|