吧务
level 10
简化的前提是定义域明确,可用$Assumptions设置假设。
2024年11月13日 14点11分
4
level 5
f = 2*ArcTan[Tan[Pi/4 + B/2]*((1 - e*Sin[B])/(1 + e*Sin[B]))^(e/2)] -
Pi/2;
fs = Series[f, {e, 0, 14}];
fs = Simplify[fs, Assumptions -> {B > -\[Pi]/2 && B < \[Pi]/2}]
问题:在 Series[] 展开式中,如何将 三角函数 "积幂项" 表达为 倍角三角函数?
2024年11月15日 03点11分
5
吧务
level 15
fs // Normal // TrigFactor
TrigFactor似乎没法直接穿透SeriesData,有点意外。
2024年12月07日 06点12分
6