This topic explores the structure of the number system, focusing on complex numbers, their operations, and classification. You'll work with imaginary units, understand addition and multiplication of complex numbers, and review how numbers are categorized from natural numbers to complex forms.
i = √-1
; i^2 = -1
a + bi
, where a
is the real part and b
is the imaginary part(3 + 2i) + (1 - 5i) = 4 - 3i
i^2 = -1
. Example: (2 + i)(3 - i) = 6 - 2i + 3i - i^2 = 6 + i + 1 = 7 + i
\overline{a + bi} = a - bi
|a + bi| = √(a² + b²)
x = 2 ± 3i
)Problem: Multiply (1 + 2i)(2 - 3i)
Step 1: Use distributive property:
1×2 + 1×(-3i) + 2i×2 + 2i×(-3i)
Step 2: Simplify:
2 - 3i + 4i - 6i^2
Step 3: Use i^2 = -1
:
2 + i + 6 = 8 + i
Final Answer: 8 + i
i
like a variable during multiplication, but always replace i²
with -1
before simplifying your final answer.