
Why do we need two number systems, and how do they interlock?
Real numbers (ℝ) model the world’s continuity, but complex numbers (ℂ) solve its hidden puzzles—like quantum waves and AC circuits.
Real numbers
It is (denoted by ℝ) and is a set of all rational and irrational numbers, forming a complete, ordered, continuous number line. They include:
>Rational numbers (ℚ): Fractions of integers (e.g., ½ , −3, 0.75, 1, 2, 3… & repeating decimals).
>Irrational numbers: Non-repeating, non-terminating decimals (e.g., √2, π, e).
Properties of Real Numbers (R)
| Property | Addition | Multiplication | Example |
|---|---|---|---|
| 1-Commutativity | a+b=b+a | a×b=b×a | 3+5=5+3 |
| 2-Associativity | (a+b)+c=a+(b+c) | (a×b)×c=a×(b×c) | (2+3)+4=2+(3+4) |
| 3-Identity | a+0=a | a×1=a | 7+0=7 |
| 4-Inverse | a+(−a)=0 | a×1/a=1 (a≠0) | 5+(−5)=0 |
| 5-Distributivity | −− | a×(b+c)=(a×b)+(a×c) | 2×(3+4)=(2×3)+(2×4) |
Rn Spaces (Ordered Tuples)
| Space | Structure | Example | Geometric Interpretation | Applications |
|---|---|---|---|---|
| R1 | Ordered 1-tuple (real number) | (5), (−3.2) | Points on a number line | Temperature, time series |
| R2 | Ordered pairs | (1,2), (0,−5) | Points/vectors in a plane ( x y ) | 2D graphics, GPS coordinates |
| R3 | Ordered triples | (1,0,−4) , (2.5,π,0) | Points/vectors in 3D space (x y z ) | 3D modeling, physics forces |
| R4 | Ordered quadruples | (3,−1,0,2), (t,x,y,z) | Space & time (physics) | Relativity (time + 3D space) |
| Rn | Ordered n-tuples | (x1, x2, x3,…………….….xn) | n-dimensional space | Machine learning (feature vectors) |
Complex Numbers
A complex number is an ordered pair (a,b), where a,b ∈ R, but we write this as a+bi. The symbol i was first used to denote Square root(-1) by Swiss mathematician Leonhard Euler in 1777. Complex numbers are represented by C.
Set of complex numbers:
C = {a + bi ∣ a, b ∈ R}.
Addition in C
(a+bi)+(c+di) = (a+c)+(b+d)i
Multiplication in C:
(a+bi)(c+di) = (ac−bd) + (ad+bc)i.
(Here a,b,c,d ∈R )
Key Points
Ordered Pair: a+bi is equivalent to (a,b) in R2.
Imaginary Unit: i=Sqrt(−1) > also satisfies i2 = −1
Real & Imaginary Parts:
Real(a + bi) = a
Imaginary(a + bi) = b
Example:
(2+3i) + (1−5i) = 3−2i.
(1+i)(1−i)=1−i2=1−(-1) = 2.
Properties of Complex Arithmetic
Let α, β, γ ∈ C
| Property | Addition | Multiplication |
|---|---|---|
| 1-Commutativity | α + β = β + α | Α β = β α |
| 2-Associativity | ( α + β ) + γ = α + ( β + γ ) | ( α β ) γ = α ( β γ) |
| 3-Identity Element | α + 0 = α | α⋅1 = α |
| 4-Inverse | ∀α , ∃( −α ) {such that α + (−α) = 0} | ∀α ≠ 0, ∃( α−1 ) { such that αα−1=1} |
| 5-Distributive | — | γ ( α + β ) = γ α + γ β |
Complex Number Spaces Cn (Ordered Tuples)
| Space | Structure | Example | Geometric Interpretation | Applications |
|---|---|---|---|---|
| C1 | Single complex number | (3+2i), (−i) | Point in the complex plane | AC circuits, quantum amplitudes |
| C2 | Ordered pairs | (1+i,2−3i), (0, i) | Vectors in 2D complex space | Quantum bits (qubits), 2D signal processing |
| C3 | Ordered triples | (1, i,−2i) (4, 0, 1+i) | Vectors in 3D complex space | Quantum states (qutrits), 3D wavefunctions |
| Cn | n-tuples | (z1, z2, z2 … , zn) | n-D complex hyperspace | Quantum computing, multivariate analysis |