Skip to content
This repository was archived by the owner on Aug 21, 2024. It is now read-only.

Commit 61b63e0

Browse files
japanavivivanwin
andauthored
Fix division sign error in Quick Reference (#766)
Fixed the sign error in Math Reference -> Complex Arithmetic -> Division. Co-authored-by: Vincent van Wingerden <[email protected]>
1 parent c45a88e commit 61b63e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

quickref/qsharp-quick-reference.pdf

2 Bytes
Binary file not shown.

quickref/qsharp-quick-reference.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@
721721
$ (a + bi) (c + di) $ & $ a \cdot c + a \cdot di + b \cdot ci + (b \cdot d)i^2 =$ \newline
722722
$ = (a \cdot c - b \cdot d) + (a \cdot d + b \cdot c)i $ \\
723723
Complex conjugate & $ \overline{a + bi} = a - bi $ \\
724-
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} $ \\
724+
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} $ \\
725725
Modulus $|a + bi|$ & $ \sqrt{a^2 + b^2} $ \\
726726
$e^{i\theta} $ & $ \cos \theta + i \sin \theta $ \\
727727
$ e^{a + bi} $ & $ e^a \cdot e^{bi} = e^a \cos b + i e^a \sin b $ \\
@@ -911,4 +911,4 @@
911911

912912
\end{keysrefMultiGates}
913913

914-
\end{document}
914+
\end{document}

0 commit comments

Comments
 (0)