Complex Numbers Flashcards

1
Q

How to find complex number in roots of polynomials

A

Lets say we have x^2 + 1.
Since the degree of this polynomial is 2, there must be 2 roots, however determining these roots can be rather complicated, since no real number squared can be a negative (since we are adding 1, it has to be negative for it to be 0).
We then just declare these roots to be i, and -i, establishing that i^2 = -1, and -i^2 = -1. These are part of an imaginary class of numbers, in which we can say (-)i^2 + 1 = 0.

Another example would be x^2 + 9, in which it would be 3i, and -3i. The way we get 3 is just simply:
If we have x^2 + 9, then that means x^2 must equal -9, since we need the polynomial to equal 0. However, we want x, so we want to find the square root of -9.
We can then split this up into -1 and 9, and take the sqrt of them:
sqrt(-1) = +- i.
sqrt(9) = 3
Therefore it equals 3i, or -3i.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Re and Im

A

Re(z) = the real part of the polynomial.
Im(z) = the imaginary part of the polynomial.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Addition

A

z = u + v, where u, v are polynomials.
Re(z) = Re(u) + Re(v).
Im(z) = Im(u) + Im(v).
Example:
u = 3+4i ; v = 1 - 2i
3 + 1 = 4
4 - 2 = 2
z = 4 + 2i

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Complex Conjugate

A


Re(z̄) = Re(z)
Im(z̄) = -Im(z)
Example:
z = 4 + 2i
Re(z̄) = 4
Im(z) = -2
z = 4 - 2i

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Modulus

A

|z|
√Re(z)^2 + Im(z)^2
Example:
z = 3 + 4i
√9 + 16 = √25 = 5

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Scalar Multiplication

A

z = a . u
Re(z) = a . Re(u) ; Im(z) = a . Im(u)
Example:
u = 3 + 4i
z = u . 2
3 . 2 = 6
2 . 4i = 8i
z = 6 + 8i

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Complex Multiplication

A

z = u . v
Re(z) = Re(u) . Re(v) - Im(u) . Im(v) (the reason for the negative is because of the i^2, since it eventually equals into the negatives due to square rooting principle we mentioned earlier)
Im(z) = Re(u) . Im(v) + Im(u) . Re(v), adding the multiplication of i at the end.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Complex Division

A

z = 1 / u
z = 1 / u = ū / |u|^2
Example:
u = 3 + 4i
ū = 3 - 4i
|u|^2 = 9 + 16 = 25
3 - 4i / 25

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Way of Representation: Matrix

A

A way of representing z = a + ib would be:
a -b
b a
in terms of a matrix.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Matrix Addition

A

Mu + v = Mu + Mv

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Matrix Conjugate

A

Mz̄ = MTz, the transpose of Mz

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Matrix Modulus

A

|z| = detMz, the determinant of Mz

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Matrix Multiplication

A

Mu . v = Mu . Mv = Mv . Mu = Mv . u

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Way of Representation: 2-vector

A

This is more done by diagram (called the Argand Diagram), with the “y-axis” being represented by the imaginary part, and the “x-axis” being represented by the real part.
We can then show the negative and positive imaginary part via two vectors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

2-Vector Advantages (addition, multiplication etc)

A

We see that the addition of complex numbers mimics vector addition. If we refer back to the page “vectors”, we see the representation of z = x + y, which is what we can input here. We can also see that the conjugate is a reflection in the Re(z) axis, as we again just switch the positive imaginary part with the negative imaginary part. Finally, modulus is just the standard vector size, another easy representation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

2-Vector Disadvantages

A

However, in these diagrams, multiplication and division does not seem to have a natural geometric analogy, as seen by the diagram as there is not really a representation of two vector added together. There are also subtleties which are lost by treating complex numbers as another way of dealing with two vectors. However, some of these issues can be resolved by looking at polar coordinates.

17
Q

Ways of Representation: Polar Coordinates

A

We have a similar representation to 2-vector representation, however, we also have an angle and modulus to consider.
We used:
z = (r, θ)
with r being the modulus, calculated by |z|, and θ being args z, aka the phase of z, being measured from the real number (x-axis) to the “standard position” of the 2-vector.
Args z is given by:
cos^-1(Re(z) / |z|) = sin^-1(Im(z) / |z|)

18
Q

Ways of Representation: Euler Form

A

z = r . e^iθ = r(cos θ + i sin θ), also known as Euler’s Formula (e being exponential)
This also leads to:
For all of a that exists in R : (cos θ + i sin θ)^a = cos(aθ) + i . sin(aθ)

19
Q

Euler Form : Multiplication

A

For example:
Lets say we have u and v, and we want to multiply them.
The phase of u = N, and the phase of v = M
u = se^iN
v = te^iM
u . v = (st)e^i(N+M)

Quick note, the reason why we have (st)e and then i(N + m) is because with s and t, we are multiplying, with iN and iM, we are adding.

20
Q

Euler Form Rules

A

“The phase resulting from the product of two complex numbers is the result of adding the phase of each” -> simply enough, lets just say that z was the final result, The phase of z would be the addition of the phases of the two other complex number.

“Infinitely many representations” -> this is because sin and cos are called periodic; the values at particular parts repeat when multiplying 2pi.

“The principle value of args z = θ is that for which 0 <= θ < 2π