Difference between revisions of "The complex plane"
Line 4: | Line 4: | ||
===Polar form=== | ===Polar form=== | ||
− | [[File:Complex vector.svg| | + | [[File:Complex vector.svg|thumb|Complex number in polar coordinates]] |
Alternatively, the complex number <math>z</math> can be specified by polar coordinates. The polar coordinates are <math>r=|z|\ge0</math> , called the '''absolute value''' or '''modulus''', and <math>\phi=\arg(z)</math> , called the '''argument''' of <math>z</math> . For <math>r=0</math> any value of <math>\varphi</math> describes the same number. To get a unique representation, a conventional choice is to set <math>\arg(0)=0</math> . For <math>r>0</math> the argument <math>\varphi</math> is unique modulo <math>2\pi</math> ; that is, if any two values of the complex argument differ by an exact integer multiple of <math>2\pi</math> , they are considered equivalent. To get a unique representation, a conventional choice is to limit <math>\varphi</math> to the interval <math>(-\pi,\pi]</math> i.e. <math>-\pi<\varphi\le\pi</math> . The representation of a complex number by its polar coordinates is called the ''polar form'' of the complex number. | Alternatively, the complex number <math>z</math> can be specified by polar coordinates. The polar coordinates are <math>r=|z|\ge0</math> , called the '''absolute value''' or '''modulus''', and <math>\phi=\arg(z)</math> , called the '''argument''' of <math>z</math> . For <math>r=0</math> any value of <math>\varphi</math> describes the same number. To get a unique representation, a conventional choice is to set <math>\arg(0)=0</math> . For <math>r>0</math> the argument <math>\varphi</math> is unique modulo <math>2\pi</math> ; that is, if any two values of the complex argument differ by an exact integer multiple of <math>2\pi</math> , they are considered equivalent. To get a unique representation, a conventional choice is to limit <math>\varphi</math> to the interval <math>(-\pi,\pi]</math> i.e. <math>-\pi<\varphi\le\pi</math> . The representation of a complex number by its polar coordinates is called the ''polar form'' of the complex number. | ||
Revision as of 09:27, 10 October 2021
The complex plane
A complex number can be viewed as a point or a position vector in a two-dimensional Cartesian coordinate system called the complex plane or Argand diagram. The point and hence the complex number can be specified by Cartesian (rectangular) coordinates. The Cartesian coordinates of the complex number are the real part and the imaginary part . The representation of a complex number by its Cartesian coordinates is called the Cartesian form or rectangular form or algebraic form of that complex number.
Polar form
Alternatively, the complex number can be specified by polar coordinates. The polar coordinates are , called the absolute value or modulus, and , called the argument of . For any value of describes the same number. To get a unique representation, a conventional choice is to set . For the argument is unique modulo ; that is, if any two values of the complex argument differ by an exact integer multiple of , they are considered equivalent. To get a unique representation, a conventional choice is to limit to the interval i.e. . The representation of a complex number by its polar coordinates is called the polar form of the complex number.
Conversion from the polar form to the Cartesian form
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle x=r\cos(\varphi)}
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle y=r\sin(\varphi)}
Conversion from the Cartesian form to the polar form
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \varphi= \begin{cases} \arctan\left(\frac{y}{x}\right)&\text{if }x>0\\ \arctan\left(\frac{y}{x}\right)+\pi&\text{if }x<0,y\ge0\\ \arctan\left(\frac{y}{x}\right)-\pi&\text{if }x<0,y<0\\ \frac{\pi}{2}&\text{if }x=0,y>0\\ -\frac{\pi}{2}&\text{if }x=0,y<0\\ \text{undefined}&\text{if }x=0,y=0 \end{cases}}
The previous formula requires rather laborious case differentiations. However, many programming languages provide a variant of the arctangent function. A formula that uses the arccos function requires fewer case differentiations:
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \varphi= \begin{cases} \arccos\left(\frac{x}{r}\right)&\text{if }y\ge0,r\ne0\\ -\arccos\left(\frac{x}{r}\right)&\text{if }y<0\\ \text{undefined}&\text{if }r=0 \end{cases}}
Notation of the polar form
The notation of the polar form as
is called trigonometric form. The notation Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \text{cis}(\varphi)} is sometimes used as an abbreviation for Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \cos(\varphi)+i\sin(\varphi)} . Using Euler's formula it can also be written as
which is called exponential form.
Multiplication, division, exponentiation, and root extraction in the polar form
Multiplication, division, exponentiation, and root extraction are much easier in the polar form than in the Cartesian form.
Using sum and difference identities its possible to obtain that
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle r_1e^{i\varphi_1}\cdot r_2e^{i\varphi_2}=r_1r_2e^{i(\varphi_1+\varphi_2)}}
and that
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{r_1e^{i\varphi_1}}{r_2e^{i\varphi_2}}=\frac{r_1}{r_2}\cdot e^{i(\varphi_1-\varphi_2)}}
Exponentiation with integer exponents; according to de Moivre's formula,
Exponentiation with arbitrary complex exponents is discussed in the article on exponentiation.
The addition of two complex numbers is just the addition of two vectors, and multiplication by a fixed complex number can be seen as a simultaneous rotation and stretching.
Multiplication by Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle i} corresponds to a counter-clockwise rotation by 90° or Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \frac{\pi}{2}} radians. The geometric content of the equation is that a sequence of two 90° rotations results in a 180° (Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \pi} radians) rotation. Even the fact from arithmetic can be understood geometrically as the combination of two 180° turns.
All the roots of any number, real or complex, may be found with a simple algorithm. The -th roots are given by
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \sqrt[n]{re^{i\varphi}}=\sqrt[n]{r}\,e^{i\left(\frac{\varphi+2k\pi}{n}\right)}}
for , where Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \sqrt[n]{r}} represents the principal Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n} -th root of .
Absolute value, conjugation and distance
The absolute value (or modulus or magnitude) of a complex number Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle z=re^{i\varphi}} is defined as Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle |z|=r} .
Algebraically, if then Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle |z|=\sqrt{a^2+b^2}} .
One can check readily that the absolute value has three important properties:
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle |z|=0} if and only if
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle |z+w|\le|z|+|w|} (triangle inequality)
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle |z\cdot w|=|z|\cdot|w|}
for all complex numbers . It then follows, for example, that and . By defining the distance function we turn the set of complex numbers into a metric space and we can therefore talk about limits and continuity.
The complex conjugate of the complex number is defined to be , written as or . As seen in the figure, is the "reflection" of about the real axis. The following can be checked:
- if and only if is real
- if is non-zero.
The latter formula is the method of choice to compute the inverse of a complex number if it is given in rectangular coordinates.
That conjugation commutes with all the algebraic operations (and many functions; e.g. ) is rooted in the ambiguity in choice of (−1 has two square roots). It is important to note, however, that the function is not complex-differentiable.
Resources
- Complex Numbers, Wikibooks: Calculus
- The complex plane. Written notes created by Professor Esparza, UTSA.