High School Mathematics Extensions/Supplementary/Complex Numbers/Solutions

From Wikibooks, open books for an open world
Jump to navigation Jump to search

The imaginary unit

  1. Compute
  2. Compute
  3. Compute
The pattern of shows that where n is any integer. This case applies to questions 2 and 3. For question 1, .

Complex numbers as solutions to quadratic equations

  1. Convince yourself that x = 3 - 2i is also a solution to the equation.
  1. Plot the points A(3, 2) and B(3, -2) on a XY plane. Draw a line for each point joining them to the origin.
  2. Compute the length of AO (the distance from point A to the Origin) and BO. Denote them by respectively. What do you observe?
    • are the same
  3. Compute the angle between each line and the x-axis and denote them by . What do you observe?
    • differ only in the sign of the number
  4. Consider the complex numbers:

Substitute z and w into the quadratic equation above using the values you have computed in Exercise 3 and 4. What do you observe? What conclusion can you draw from this?

Thus the quadratic equation will equal 0 since z and w are equal to the solutions we found when solving the equation.

Addition and multiplication

Compute:

  1. x + y
    • (3 - 2i) + (3 + 2i) = 6
  2. x - y
    • 3 - 2i - (3 + 2i) = -4i
  3. x2
    • (3 - 2i)(3 - 2i) = 9 + (2)(3)(-2i) + 4i2 = 5 - 12 i
  4. y2
    • (3 + 2i)(3 + 2i) = 9 + (2)(3)(2i) + 4i2 = 5 + 12 i
  5. xy
    • (3 - 2i)(3 + 2i) = 9 + 6 i - 6i - 4i2 = 13
  6. (x + y)(x - y)
    • ((3 - 2i) + (3 + 2i))((3 - 2i) - (3 + 2i)) = (6)(-4i) = -24i

Division Convince yourself that the product of zw is always a real number.

Complex Conjugate Convince yourself that the multiplication law is also true.

The complex root

1. Find (3 + 3i)1/2

Thus the solution for (3 + 3i)1/2 is:

2. Find (1 + 1i)1/2

Thus the solution for (1 + 1i)1/2 is:

3. Find i1/3

Thus the solution for i1/3 is:

Bases

  1. The following numbers are written in base 2. Write them out in base 10:
    1. 101011 (base 2) = 43 (base 10) = 25 + 23 + 21 + 20= 32+8+2+1
    2. 001101 = 13
    3. 10 = 2
    4. 011 = 3
  2. Write those numbers out in base 10 as if they were originally in base 5.
    1. 101011 (base 5) = 3256 (base 10) = 55 + 53 + 51 + 50 = 3125+125+5+1
    2. 001101 = 151
    3. 10 = 5
    4. 011 = 6
  3. How many numbers could I write out in base 5 with only the first 4 columns?
Answer: 625 = 54 (each new column multiplies the number of possibilities by 5)
  1. In computing, each 1 or 0 is called a bit. They are stored in groups of 8. Each group is called a byte. How many bytes are possible?
Answer: 256 = 28 (values from 00000000 through 11111111 binary, or 0 through 255 base 10)
  1. Question: When editing the bytes directly, writing out 10110001 is too long and hexadecimal is used instead (in this case, B1). How many digits of hexadecimal are needed to cover all possible bytes?
Answer: 2 digits (162 = number of possible 2-digit hexadecimal numbers = 256 = number of possible bytes)