-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2070 from expikr/testbook-add-mathajx-tests
Added missing tests for MathJax to the test book
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# MathJax | ||
|
||
Fourier Transform | ||
|
||
\\[ | ||
\begin{aligned} | ||
f(x) &= \int_{-\infty}^{\infty}F(s)(-1)^{ 2xs}ds \\\\ | ||
F(s) &= \int_{-\infty}^{\infty}f(x)(-1)^{-2xs}dx | ||
\end{aligned} | ||
\\] | ||
|
||
The kernel can also be written as \\(e^{2i\pi xs}\\) which is more frequently used in literature. | ||
|
||
> Proof that \\(e^{ix} = \cos x + i\sin x\\) a.k.a Euler's Formula: | ||
> | ||
> \\( | ||
\begin{aligned} | ||
e^x &= \sum_{n=0}^\infty \frac{x^n}{n!} \implies e^{ix} = \sum_{n=0}^\infty \frac{(ix)^n}{n!} \\\\ | ||
\cos x &= \sum_{m=0}^\infty \frac{(-1)^m x^{2m}}{(2m)!} = \sum_{m=0}^\infty \frac{(ix)^{2m}}{(2m)!} \\\\ | ||
\sin x &= \sum_{s=0}^\infty \frac{(-1)^s x^{2s+1}}{(2s+1)!} = \sum_{s=0}^\infty \frac{(ix)^{2s+1}}{i(2s+1)!} \\\\ | ||
\cos x + i\sin x &= \sum_{l=0}^\infty \frac{(ix)^{2l}}{(2l)!} + \sum_{s=0}^\infty \frac{(ix)^{2s+1}}{(2s+1)!} = \sum_{n=0}^\infty \frac{(ix)^{n}}{n!} \\\\ | ||
&= e^{ix} | ||
\end{aligned} | ||
\\) | ||
> | ||
|
||
Pauli Matrices | ||
|
||
\\[ | ||
\begin{aligned} | ||
\sigma_x &= \begin{pmatrix} | ||
1 & 0 \\\\ 0 & 1 | ||
\end{pmatrix} \\\\ | ||
\sigma_y &= \begin{pmatrix} | ||
0 & -i \\\\ i & 0 | ||
\end{pmatrix} \\\\ | ||
\sigma_z &= \begin{pmatrix} | ||
1 & 0 \\\\ 0 & -1 | ||
\end{pmatrix} | ||
\end{aligned} | ||
\\] |