Skip to content

Commit

Permalink
Fix division sign error in Quick Reference (microsoft#766)
Browse files Browse the repository at this point in the history
Fixed the sign error in Math Reference -> Complex Arithmetic -> Division. 

Co-authored-by: Vincent van Wingerden <25651976+vivanwin@users.noreply.github.com>
  • Loading branch information
japanavi and vivanwin authored Mar 21, 2022
1 parent c45a88e commit 61b63e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified quickref/qsharp-quick-reference.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions quickref/qsharp-quick-reference.tex
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@
$ (a + bi) (c + di) $ & $ a \cdot c + a \cdot di + b \cdot ci + (b \cdot d)i^2 =$ \newline
$ = (a \cdot c - b \cdot d) + (a \cdot d + b \cdot c)i $ \\
Complex conjugate & $ \overline{a + bi} = a - bi $ \\
Division $ \frac{a+bi}{c+di} $ & $ \frac{a+bi}{c+di} \cdot 1 = \frac{a+bi}{c+di} \cdot \frac{c-di}{c-di} = \frac{(a+bi)(c+di)}{c^2 + d^2} $ \\
Division $ \frac{a+bi}{c+di} $ & $ \frac{a+bi}{c+di} \cdot 1 = \frac{a+bi}{c+di} \cdot \frac{c-di}{c-di} = \frac{(a+bi)(c-di)}{c^2 + d^2} $ \\
Modulus $|a + bi|$ & $ \sqrt{a^2 + b^2} $ \\
$e^{i\theta} $ & $ \cos \theta + i \sin \theta $ \\
$ e^{a + bi} $ & $ e^a \cdot e^{bi} = e^a \cos b + i e^a \sin b $ \\
Expand Down Expand Up @@ -911,4 +911,4 @@

\end{keysrefMultiGates}

\end{document}
\end{document}

0 comments on commit 61b63e0

Please sign in to comment.