feat: 增加三角函数积分递推式(I_n记法)
This commit is contained in:
parent
2a92798bda
commit
a9f8e6abc5
|
|
@ -50,6 +50,7 @@
|
|||
- 特殊角三角函数值
|
||||
- 和差化积 & 积化和差
|
||||
- 六种三角函数关系(sec、csc、cot)
|
||||
- 三角函数积分递推式($I_n$ 记法)
|
||||
|
||||
---
|
||||
|
||||
|
|
@ -64,6 +65,6 @@
|
|||
| 05 微分方程 | 一阶/高阶方程、常系数、欧拉方程 | 8 |
|
||||
| 09 级数 | 数列不动点 | 1 |
|
||||
| e01 常用公式速查 | 乘/指/对/数列/不等式/韦达定理 | — |
|
||||
| e02 三角函数 | 奇变偶不变、和差化积、sec/csc/cot | — |
|
||||
| e02 三角函数 | 奇变偶不变、和差化积、sec/csc/cot、积分递推 | — |
|
||||
|
||||
**总计:26 个要点 + 2 篇杂项**
|
||||
|
|
|
|||
|
|
@ -62,3 +62,23 @@
|
|||
- $\tan x = \frac{\sin x}{\cos x}$
|
||||
- $\cot x = \frac{\cos x}{\sin x}$
|
||||
|
||||
## 三角函数积分递推式
|
||||
|
||||
记 $I_n = \displaystyle\int \sin^n x \, dx$:
|
||||
$$I_n = -\frac{1}{n}\sin^{n-1}x\cos x + \frac{n-1}{n}I_{n-2}$$
|
||||
|
||||
记 $I_n = \displaystyle\int \cos^n x \, dx$:
|
||||
$$I_n = \frac{1}{n}\cos^{n-1}x\sin x + \frac{n-1}{n}I_{n-2}$$
|
||||
|
||||
记 $I_n = \displaystyle\int \tan^n x \, dx$($n \neq 1$):
|
||||
$$I_n = \frac{1}{n-1}\tan^{n-1}x - I_{n-2}$$
|
||||
|
||||
记 $I_n = \displaystyle\int \cot^n x \, dx$($n \neq 1$):
|
||||
$$I_n = -\frac{1}{n-1}\cot^{n-1}x - I_{n-2}$$
|
||||
|
||||
记 $I_n = \displaystyle\int \sec^n x \, dx$($n \neq 1$):
|
||||
$$I_n = \frac{1}{n-1}\sec^{n-2}x\tan x + \frac{n-2}{n-1}I_{n-2}$$
|
||||
|
||||
记 $I_n = \displaystyle\int \csc^n x \, dx$($n \neq 1$):
|
||||
$$I_n = -\frac{1}{n-1}\csc^{n-2}x\cot x + \frac{n-2}{n-1}I_{n-2}$$
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue