mark
last_100_days
不协和音·其三
心得
随想
$$ \begin{aligned} % --- 在此处定义一个全局宏命令 \ud 代表正体的 d --- \newcommand{\ud}{\mathrm{d}} \iint_R f(x,y)\,\ud x\,\ud y &= \iint_S f(aR\cos(\theta),bR\sin(\theta))\left|\frac{\partial(x,y)}{\partial(R,\theta)}\right|\,\ud R\,\ud \theta \\ &= \iint_S f(aR\cos(\theta),bR\sin(\theta))\left| \begin{vmatrix} \frac{\partial x}{\partial R} & \frac{\partial x}{\partial \theta} \\ \frac{\partial y}{\partial R} & \frac{\partial y}{\partial \theta} \end{vmatrix} \right|\,\ud R\,\ud \theta \\ &= \iint_S f(aR\cos(\theta),bR\sin(\theta))\left| \begin{vmatrix} a\cos(\theta) & -aR\sin(\theta) \\ b\sin(\theta) & bR\cos(\theta) \end{vmatrix} \right|\,\ud R\,\ud \theta \\ &= \iint_S f(aR\cos(\theta),bR\sin(\theta))\left| (a\cos(\theta))(bR\cos(\theta)) - (-aR\sin(\theta))(b\sin(\theta)) \right|\,\ud R\,\ud \theta \\ &= \iint_S f(aR\cos(\theta),bR\sin(\theta))\left| abR\cos^2(\theta) + abR\sin^2(\theta) \right|\,\ud R\,\ud \theta \\ &= \iint_S f(aR\cos(\theta),bR\sin(\theta))\left| abR(\cos^2(\theta) + \sin^2(\theta)) \right|\,\ud R\,\ud \theta \\ &= \iint_S f(aR\cos(\theta),bR\sin(\theta)) abR \, \ud R\,\ud \theta \quad (\text{假设 } a,b,R \ge 0) \end{aligned} $$这里可以理解为坐标轴改变,即假设以($\theta,R$)为新坐标轴,原先的$x,y$就变成了$\partial x,\partial y$的新坐标,新的面积即为他们的叉乘(即二阶行列式)
当函数$f(x)$满足$\forall a\leq x \leq b,f(x)=f(a+b-x)$(即积分区间内函数对称)时,有
$$ \begin{aligned} \int_a^b xf(x)\,\ud x &=\int_a^b(a+b-x)f(x)\,\ud x\\ &=\frac{a+b}{2}\int_a^b f(x)\,\ud x \\[1.5em] \text{e.g.} \quad \int_{0}^{\pi} x\sin(x)\,\ud x &=\frac{\pi}{2}\int_{0}^\pi \sin(x)\,\ud x \end{aligned} $$不协和音·其二
JSCPC2025
没有包袱的一场XCPC(虽然是打星)…
彻底蜕变为旅游选手啦~
log
不协和音·其一
math_formula
$$
\sin x = \sum_{n=0}^{\infty} (-1)^n \frac{x^{2n+1}}{(2n+1)!} = \frac{x^1}{1!} - \frac{x^3}{3!} + \frac{x^5}{5!} - \cdots
$$
$$
\cos x = \sum_{n=0}^{\infty} (-1)^n \frac{x^{2n}}{(2n)!} = \frac{1}{0!} - \frac{x^2}{2!} + \frac{x^4}{4!} - \cdots
$$
$$
\ln(1+x)=\sum_{n=1}^{\infty}(-1)^{n+1}\frac{x^n}{n}=\frac{x^1}{1}-\frac{x^2}{2}+\frac{x^3}{3}-\cdots
$$
$$
\frac{1}{1-x}=\sum_{n=0}^{\infty}x^n=x^0+x^1+x^2+\cdots
$$
$$
\arctan x=\sum_{n=0}^{\infty}(-1)^n\frac{x^{2n+1}}{2n+1}=\frac{x^1}{1}-\frac{x^3}{3}+\frac{x^5}{5}-\cdots
$$
泰勒展开公式
$$
f(x)在k处展开:f(x)=\sum_{n=0}^{\infty}\frac{f^{(n)}(k)}{n!}(x-k)^n
$$
$$
e.g. \sin x=\sum_{n=0}^{\infty}\frac{\sin^{(n)}0}{n!}x^n
$$
4n+1阶导为1,4n+3阶导为-1,2n阶导为0.