\begin{align*}
\\ \text{Let } arcsin(x) & = \theta
\\\text{But } \theta \text{ is a function of x so we can write }
\\ arcsin(x) & = \theta(x)
\\ x & = sin(\theta(x))
\\ \frac{d}{dx}x & = \frac{d}{dx}sin(\theta(x))
\\ \text{Imagine f(x) = sin(x) and g(x) = } \theta(x).
\\ \text{Thus, f'(g(x))g'(x) = cos(} \theta(x))\theta'(x).
\\\text{So overall, you differentiated sin(} \theta) \text{ with respect to } \theta.
\end{align*}
上記は Notion で書きました。すべての数式を揃えることはできましたが、テキストが揃っていません。これを修正するのに苦労しています。
私は LaTeX とこのコミュニティに不慣れなので、質問の形式が間違っていたらお詫びします。
答え1
最初の2行と最後の行を環境から完全に取り除きalign*
、中間の行の1つを\intertext
ラッパーに配置することをお勧めします。(ちなみに、ここではタイプセットの問題のみを取り上げています。ない関連する数学。したがって、 についてはコメントしません\frac{d}{dx}x
。
あ、ぜひ、、、、と書くのではなく\sin
、、、、と書いてください。\cos
\arcsin
sin
cos
arcsin
\documentclass{article}
\usepackage{amsmath} % for 'align*' env. and '\intertext' macro
\begin{document}
\noindent
Let $\arcsin(x) = \theta$. Because $\theta$ is a function of $x$, we can write
\begin{align*}
\arcsin(x) &= \theta(x) \\
x &= \sin(\theta(x)) \\
\frac{d}{dx}x &= \frac{d}{dx}\sin(\theta(x))\,.\\
\intertext{Put $f(x) = \sin(x)$ and $g(x) = \theta(x)$. Thus}
f'(g(x))g'(x) &= \cos(\theta(x))\theta'(x).
\end{align*}
So overall, you differentiated $\sin(\theta)$ with respect to $\theta$.
\end{document}