Friday, 1 May 2026

Imaginary and Complex numbers | Class 11 | CBSE, ICSE, AHSEC

Based on the NCERT chapter on Complex Numbers and Quadratic Equations, here is a simplified study guide designed to help you visualize and master the basics of Section 4.2.


4.2 Understanding Complex Numbers

1. Why do we need them?

In the real number system, we cannot solve equations like $x^2 + 1 = 0$ because $x^2 = -1$, and no real number squared results in a negative value. To solve this, mathematicians introduced the symbol $i$ (iota).

  • The Definition: $i = \sqrt{-1}$

  • The Property: $i^2 = -1$


2. What is a Complex Number?

A complex number ($z$) is a combination of a Real part and an Imaginary part. It is written in the form:

$$z = a + ib$$
ComponentNameSymbol
$a$Real Part$Re(z)$
$b$Imaginary Part$Im(z)$

Example: In $z = 2 + i5$

  • The Real part is 2.

  • The Imaginary part is 5.


3. Visualizing Complex Numbers (The Argand Plane)

Think of a complex number like a coordinate on a graph. Instead of $x$ and $y$ axes, we use:

  • Horizontal Axis: The Real Axis (for $a$)

  • Vertical Axis: The Imaginary Axis (for $b$)

Visualization Tip: The number $3 + 4i$ can be visualized as a point $(3, 4)$ on this plane. The distance from the center (origin) to this point represents the "size" or magnitude of the number.


4. Equality of Complex Numbers

Two complex numbers $z_1 = a + ib$ and $z_2 = c + id$ are equal if and only if their corresponding parts are identical:

  1. $a = c$ (Real parts match)

  2. $b = d$ (Imaginary parts match)

Quick Practice (from Example 1):

If $4x + i(3x - y) = 3 + i(-6)$, find $x$ and $y$.

  • Step 1: Match Real parts: $4x = 3 \Rightarrow x = \frac{3}{4}$

  • Step 2: Match Imaginary parts: $3x - y = -6$

  • Step 3: Substitute $x$ to find $y = \frac{33}{4}$


5. Summary Table: Real vs. Imaginary

TypeFormExample
Purely Real$a + i0$$5$
Purely Imaginary$0 + ib$$7i$
Complex$a + ib$$2 + 3i$

Key Takeaways for Exams

  • $i$ is the solution to $x^2 + 1 = 0$.

  • Always keep the real and imaginary parts separate during calculations.

  • Equality is the most common starting point for solving algebraic complex number problems.



This section covers how to perform basic arithmetic with complex numbers. The key rule to remember for both addition and subtraction is: Like terms stay together. You add/subtract the real parts with real parts, and imaginary parts with imaginary parts.


4.3 Algebra of Complex Numbers

4.3.1 Addition of Two Complex Numbers

To add two complex numbers, you simply combine their corresponding parts.

If $z_1 = a + ib$ and $z_2 = c + id$, then:

$$z_1 + z_2 = (a + c) + i(b + d)$$

Example:

Add $z_1 = 2 + 3i$ and $z_2 = -6 + 5i$.

  • Step 1: Group the real parts: $(2 + (-6)) = -4$

  • Step 2: Group the imaginary parts: $(3i + 5i) = 8i$

  • Result: $-4 + 8i$

Properties of Addition

Addition of complex numbers follows the same "rules of the road" as real numbers:

  1. Closure Law: The sum of two complex numbers is always a complex number.

  2. Commutative Law: The order doesn't matter ($z_1 + z_2 = z_2 + z_1$).

  3. Associative Law: Grouping doesn't matter ($(z_1 + z_2) + z_3 = z_1 + (z_2 + z_3)$).

  4. Additive Identity: There is a "zero" complex number, $0 + i0$ (denoted as $0$). Adding it changes nothing ($z + 0 = z$).

  5. Additive Inverse: For every $z = a + ib$, there is a $-z = -a - ib$ such that their sum is zero ($z + (-z) = 0$).


4.3.2 Difference of Two Complex Numbers

The difference $z_1 - z_2$ is defined as adding the negative (additive inverse) of the second number to the first.

If $z_1 = a + ib$ and $z_2 = c + id$, then:

$$z_1 - z_2 = z_1 + (-z_2) = (a - c) + i(b - d)$$

Example:

Subtract $(2 - i)$ from $(6 + 3i)$.

  • Expression: $(6 + 3i) - (2 - i)$

  • Step 1: Distribute the negative sign: $6 + 3i - 2 + i$

  • Step 2: Combine real parts: $(6 - 2) = 4$

  • Step 3: Combine imaginary parts: $(3i + i) = 4i$

  • Result: $4 + 4i$


💡 Visualizing Addition and Subtraction

Think of complex numbers as arrows (vectors) starting from the center $(0,0)$ of the graph:

  • Addition: Place the start of the second arrow at the tip of the first. The point where the second arrow ends is your sum.

  • Subtraction: It is like adding an arrow pointing in the opposite direction.

Note: Just like in basic algebra, you can never "mix" the $i$ part with the non-$i$ part. They are like apples and oranges!


Quick Check: If $z_1 = 1 + i$ and $z_2 = 1 - i$, what is $z_1 + z_2$?

(Hint: The imaginary parts will cancel each other out!)


Multiplication is where complex numbers get interesting. Unlike addition, where we just group terms, multiplication involves the "FOIL" method (First, Outer, Inner, Last) and a special rule for $i^2$.


4.3.3 Multiplication of Two Complex Numbers

1. The Core Formula

If $z_1 = a + ib$ and $z_2 = c + id$, their product is defined as:

$$z_1z_2 = (ac - bd) + i(ad + bc)$$

Why the minus sign? When you multiply $ib \times id$, you get $i^2bd$. Since $i^2 = -1$, this becomes $-bd$, which joins the real part of the result.


2. Step-by-Step Visualization (The FOIL Method)

You can multiply complex numbers just like algebraic binomials:

$$(a + ib)(c + id) = \underbrace{ac}_{\text{First}} + \underbrace{a(id)}_{\text{Outer}} + \underbrace{(ib)c}_{\text{Inner}} + \underbrace{(ib)(id)}_{\text{Last}}$$
$$= ac + i(ad) + i(bc) + i^2(bd)$$
$$= ac + i(ad + bc) - bd$$
$$= (ac - bd) + i(ad + bc)$$

Example (from NCERT):

Multiply $(3 + i5)$ and $(2 + i6)$:

  • Real Part: $(3 \times 2) - (5 \times 6) = 6 - 30 = \mathbf{-24}$

  • Imaginary Part: $(3 \times 6) + (5 \times 2) = 18 + 10 = \mathbf{28}$

  • Result: $-24 + i28$


3. Properties of Multiplication

Multiplication follows several important laws:

  • Closure Law: The product is always a complex number.

  • Commutative Law: $z_1z_2 = z_2z_1$.

  • Associative Law: $(z_1z_2)z_3 = z_1(z_2z_3)$.

  • Multiplicative Identity: The number $1$ (or $1 + i0$). Multiplying any $z$ by $1$ results in $z$.

  • Distributive Law: $z_1(z_2 + z_3) = z_1z_2 + z_1z_3$.


4. The Multiplicative Inverse ($z^{-1}$)

For every non-zero complex number $z = a + ib$, there exists an inverse such that $z \cdot \frac{1}{z} = 1$.

The formula for the inverse is:

$$z^{-1} = \frac{a}{a^2 + b^2} + i\frac{-b}{a^2 + b^2}$$

5. Powers of $i$ (Crucial for Multiplication)

When multiplying, you will often encounter higher powers of $i$. They follow a repeating cycle of four:

PowerSimplified Value
$i^1$$i$
$i^2$$-1$
$i^3$$-i$
$i^4$$1$

Pro-Tip: To find any power $i^n$, divide $n$ by 4 and look at the remainder. For example, $i^{39}$ has a remainder of 3 when divided by 4, so $i^{39} = i^3 = -i$.



To master the Division of two complex numbers, you don't actually need to learn a "new" operation. Instead, you just need to learn one clever trick: The Conjugate Method.


4.3.4 Division of Two Complex Numbers

1. The Strategy: "Rationalizing" the Denominator

When you see a division problem like $\frac{z_1}{z_2}$, your goal is to get the $i$ out of the bottom (denominator). We do this by multiplying the top and bottom by the Conjugate of the bottom number.

What is a Conjugate? > If $z = a + ib$, its conjugate is $\bar{z} = a - ib$.

The magic of the conjugate is that $z \times \bar{z}$ always results in a pure real number: $(a^2 + b^2)$.


2. Step-by-Step Procedure

To find $\frac{z_1}{z_2}$:

  1. Find the Conjugate of the denominator ($z_2$).

  2. Multiply both the numerator and denominator by that conjugate.

  3. Simplify the top (using FOIL) and the bottom (using $a^2 + b^2$).

Example (from NCERT): Find $\frac{6 + 3i}{2 - i}$

  • Step 1: The conjugate of $2 - i$ is $2 + i$.

  • Step 2: Multiply: $\frac{(6 + 3i)}{(2 - i)} \times \frac{(2 + i)}{(2 + i)}$

  • Step 3: * Top: $(6 \times 2) + (6 \times i) + (3i \times 2) + (3i \times i) = 12 + 6i + 6i - 3 = \mathbf{9 + 12i}$

    • Bottom: $2^2 + (-1)^2 = 4 + 1 = \mathbf{5}$

  • Result: $\frac{9}{5} + \frac{12}{5}i$


3. Visualizing Division

Think of division as a two-step transformation:

  1. Scaling: The "length" (magnitude) of the result is the division of the two original lengths.

  2. Rotating: The "angle" of the result is the difference between the two original angles.


🧠 Memory Tricks & Recall Techniques

  • The "Anti-Gravity" Trick: Just like you can't have a radical ($\sqrt{x}$) in the denominator in basic algebra, think of $i$ as "too heavy" to stay at the bottom. The Conjugate is the "balloon" that floats it up to the top.

  • The Mirror Trick: To remember the conjugate, imagine the Real axis is a mirror. $a + ib$ looks into the mirror and sees $a - ib$.

  • SOS Recall: Sign Opposite Simplify.

    • Sign: Change the sign of the $i$ part of the bottom.

    • Opposite: Multiply by this opposite-signed number.

    • Simplify: Clean up the $i^2$ terms.


🎓 Exam Tips (NCERT Style)

  • The Identity Check: Remember that $\frac{z_1}{z_2}$ is technically $z_1 \times \frac{1}{z_2}$. If you find the multiplicative inverse ($z^{-1}$) of the denominator first, you just have a multiplication problem left.

  • Don't forget $i^2 = -1$: Most mistakes happen here! When you multiply $3i \times i$, it becomes $-3$, not $+3$.

  • Final Form: Always write your answer in the strict $a + bi$ form. Even if the real part is zero, write $0 + bi$.

Technique to Recall: If you forget the formula for division during an exam, don't panic. Just remember: "Multiply by the conjugate of the bottom." That single sentence will allow you to derive the answer every time.


To master the Powers of $i$, you need to stop thinking of it as an infinite list of values and start seeing it as a circular cycle of four.


4.3.5 Powers of $i$ (Iota)

In complex numbers, the powers of $i$ repeat in a specific pattern every four steps. This is because $i^4 = 1$, which acts as a "reset" button.

1. The Core Cycle

PowerCalculationResultMemory Key
$i^1$$\sqrt{-1}$$i$Just $i$
$i^2$$(\sqrt{-1})^2$$-1$The Definition
$i^3$$i^2 \times i$$-i$Negative $i$
$i^4$$(i^2)^2$$1$The Reset

2. The General Rule (The "Remainder" Method)

To find $i^n$ for any large integer $n$, simply divide $n$ by 4 and look at the remainder ($r$).

$$i^n = i^r$$
  • If Remainder is 0 $\rightarrow$ $i^n = 1$

  • If Remainder is 1 $\rightarrow$ $i^n = i$

  • If Remainder is 2 $\rightarrow$ $i^n = -1$

  • If Remainder is 3 $\rightarrow$ $i^n = -i$

Example: Find $i^{39}$

  1. Divide 39 by 4: $39 = (4 \times 9) + \mathbf{3}$.

  2. The remainder is 3.

  3. Therefore, $i^{39} = i^3 = \mathbf{-i}$.


3. Negative Powers of $i$

When you see $i^{-n}$, it is $\frac{1}{i^n}$. To solve these, multiply the numerator and denominator by whatever makes the bottom $i^4$.

Example: $i^{-1} = \frac{1}{i}$

Multiply top and bottom by $i^3$: $\frac{1 \cdot i^3}{i \cdot i^3} = \frac{-i}{i^4} = \frac{-i}{1} = \mathbf{-i}$.

Fast Trick: $i^{-1} = -i$ and $i^{-3} = i$.


🧠 Visualization & Memory Techniques

The Clock Face Visualization

Imagine a clock that only has four hours:

  • 12 o'clock: Value is $1$ (at $i^4, i^8, i^{12}...$)

  • 3 o'clock: Value is $i$ (at $i^1, i^5, i^9...$)

  • 6 o'clock: Value is $-1$ (at $i^2, i^6, i^{10}...$)

  • 9 o'clock: Value is $-i$ (at $i^3, i^7, i^{11}...$)

Every power of $i$ is just a "spin" around this clock.

The "Real-Imaginary" Seesaw

Notice the pattern:

  • Even powers ($2, 4, 6...$) always result in Real numbers ($1$ or $-1$).

  • Odd powers ($1, 3, 5...$) always result in Imaginary numbers ($i$ or $-i$).


🎓 Exam Tips & Recall

  • Sum of 4 consecutive powers: The sum of any four consecutive powers of $i$ is always 0.

    • Example: $i^1 + i^2 + i^3 + i^4 = i - 1 - i + 1 = 0$.

  • The Last Two Digits Rule: To divide a massive number (like $i^{2026}$) by 4, you only need to check the last two digits.

    • $26 \div 4$ leaves a remainder of 2.

    • So, $i^{2026} = i^2 = -1$.

  • Quick Recall Mnemonic: > "I won (1), I lost (-1)"

    • Odd powers stay $i$ (positive or negative).

    • Even powers become $1$ (positive or negative).


Great! Let's put your skills to the test. Use the "Last Two Digits" rule and the "Clock Face" cycle to solve these.

Remember the goal: divide the exponent by 4 and find the remainder.

Practice Set: Powers of $i$

  1. The Year Challenge: What is the value of $i^{2026}$?

  2. The Large Number: What is the value of $i^{543}$?

  3. The Negative Power: What is the value of $i^{-13}$?

  4. The Sequence: What is the value of $i^1 + i^2 + i^3 + i^4$?


Answer Key & Explanations

ProblemRemainder CalculationResultReasoning
1.$26 \div 4 = 6$ rem 2$-1$$i^2 = -1$. (Even power, negative side).
2.$43 \div 4 = 10$ rem 3$-i$$i^3 = -i$. (Odd power, negative side).
3.$13 \div 4 = 3$ rem 1$-i$$\frac{1}{i^1} \Rightarrow \frac{1 \cdot i^3}{i \cdot i^3} = \frac{-i}{1} = -i$.
4.Sum of 4 consecutive$0$$i + (-1) + (-i) + 1 = 0$. (The "Reset" Law).

💡 Strategy Check

  • Did you use the Last Two Digits? For $i^{543}$, ignoring the "5" and just using $43$ makes it much faster!

  • The Odd/Even Filter: If the power is even, your answer must be $1$ or $-1$. If the power is odd, it must be $i$ or $-i$. This is a great way to double-check your work instantly.

How did you do? If you're feeling confident, we can move on to 4.3.6 Square Roots of a Negative Real Number, which explains why $\sqrt{-3} \times \sqrt{-3}$ is not $\sqrt{9}$.


This section addresses one of the most common "trap" areas in complex numbers. It explains how to handle square roots of negative numbers and why the old rules of multiplication change slightly.


4.3.6 The Square Roots of a Negative Real Number

1. The Basic Definition

We know that $i^2 = -1$ and $(-i)^2 = -1$. Therefore, the square roots of $-1$ are $i$ and $-i$.

However, in mathematical notation, the symbol $\sqrt{-1}$ is used specifically to represent $i$.

For any positive real number $a$:

$$\sqrt{-a} = \sqrt{a} \times \sqrt{-1} = \sqrt{a}\,i$$

Examples:

  • $\sqrt{-3} = \sqrt{3}\,i$

  • $\sqrt{-4} = \sqrt{4}\,i = 2i$

  • $\sqrt{-9} = 3i$


2. The "Danger Zone": $\sqrt{a} \times \sqrt{b}$

In real numbers, we were taught that $\sqrt{a} \times \sqrt{b} = \sqrt{ab}$. This is NOT always true for complex numbers.

The Rule: The property $\sqrt{a} \times \sqrt{b} = \sqrt{ab}$ holds true only if at least one of the numbers is non-negative.

If both $a < 0$ and $b < 0$, the rule fails.

The Proof of the Trap:

If we wrongly assume the rule works for two negatives:

$\sqrt{-1} \times \sqrt{-1} = \sqrt{(-1) \times (-1)} = \sqrt{1} = 1$

But we know that:

$i \times i = i^2 = -1$

Since $1 \neq -1$, we see that $\sqrt{-1} \times \sqrt{-1} \neq \sqrt{(-1)(-1)}$.


🧠 Visualization & Memory Techniques

The "i-First" Technique

To avoid mistakes, never multiply numbers inside a square root if they are negative. Always "extract the $i$" first.

Visualization: Imagine the negative sign inside a square root is a prisoner. The only way to let it out is to transform it into an $i$ outside the root.

  • Step 1: See $\sqrt{-5}$.

  • Step 2: The negative sign "jumps out" and turns into an $i$.

  • Step 3: You are left with $i\sqrt{5}$.

The "Identity Crisis" Memory Trick

Think of the square root sign as a "filter."

  • If you have two negatives, they don't just "cancel out" to make a positive inside the root.

  • Remember: "Two i's make a minus." ($i \times i = -1$).


🔄 Recall Techniques

  1. The SOS Method (Sign Out Symbol):

    • Sign: Look for the negative sign.

    • Out: Pull it out of the square root.

    • Symbol: Replace it with the symbol $i$.

  2. The "Check your i's" Rule:

    Whenever you see $\sqrt{-a} \cdot \sqrt{-b}$, tell yourself: "Convert to $i$ before you multiply."

    • $i\sqrt{a} \cdot i\sqrt{b} = i^2\sqrt{ab} = -\sqrt{ab}$.


🎓 Exam Tips (NCERT Focus)

  • NCERT Contradiction Warning: Expect questions that try to trick you into saying $\sqrt{-2} \times \sqrt{-3} = \sqrt{6}$. Always write the answer as $-\sqrt{6}$ and show the step where $i^2 = -1$.

  • The Symbol $\sqrt{-a}$: If an exam asks for "the" square root of $-25$, they usually want the principal root, which is $5i$. However, if they ask for "the solutions to $x^2 = -25$", you must provide both $5i$ and $-5i$.