Difference between revisions of "Activities/Turtle Art/Tutorials/Complex Numbers"

From Sugar Labs
Jump to navigation Jump to search
(Outline of new page)
 
(Migrate to GitHub)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{stub}}
+
== Turtle Art/Tutorials/Complex Numbers ==
  
The arithmetic of complex numbers of the form a+bi, for a and b real, is a bit more complicated than real arithmetic, but it is all well within the range of those who have learned elementary algebra in high school. Some of it is within the range of much younger students.
+
Read at https://help.sugarlabs.org/en/turtleart_tutorials/complex_numbers.html
  
==What is a complex number?==
+
The source file has been moved to [https://github.com/godiard/help-activity/blob/master/source/turtleart_tutorials/complex_numbers.rst GitHub]
 
 
A complex number is part of the solution to a number of particular kinds of problem.
 
 
 
* Quadratic and cubic equations
 
* Complex variables
 
* Electrical engineering
 
* Quantum Mechanics
 
 
 
==Addition and subtraction==
 
 
 
(a+bi)+(c+di) = (a+c)+(b+d)i
 
 
 
Equivalent to [[Activities/TurtleArt/Tutorials/Vector|vector]] addition
 
 
 
==Division==
 
 
 
1/(a+bi) = (a-bi)/(a-bi)(a+bi) = (a-bi)/(a^2+b^2)
 

Latest revision as of 09:28, 28 July 2018

Turtle Art/Tutorials/Complex Numbers

Read at https://help.sugarlabs.org/en/turtleart_tutorials/complex_numbers.html

The source file has been moved to GitHub