What are complex numbers?Thanx.

1 Answer
Feb 9, 2016

Complex numbers are numbers of the form #a+bi# where #a# and #b# are real numbers and #i# is defined as #i=sqrt(-1)#.


(The above is a basic definition of complex numbers. Read on for a little more about them.)

Much like how we denote the set of real numbers as #RR#, we denote the set of complex numbers as #CC#. Note that all real numbers are also complex numbers, as any real number #x# may be written as #x+0i#.

Given a complex number #z=a+bi#, we say that #a# is the real part of the complex number (denoted #"Re"(z)#) and #b# is the imaginary part of the complex number (denoted #"Im"(z)#).

Performing operations with complex numbers is similar to performing operations on binomials. Given two complex numbers #z_1 = a_1 + b_1i# and #z_2 = a_2+b_2i#

#z_1+z_2 = a_1+b_1i+a_2+b_2i=(a_1+a_2)+(b_1+b_2)i#

#z_1-z_2 = a_1+b_1i-(a_2+b_2i)=(a_1-a_2)+(b_1-b_2)i#

#z_1xxz_2 = (a_1+b_1i)(a_2+b_2i)#
#=a_1a_2+a_1b_2i+a_2b_1i+b_1b_2i^2#
#=a_1a_2+a_1b_2i+a_2b_1i-b_1b_2# (remember #i=sqrt(-1)#)
#=(a_1a_2-b_1b_2)+(a_1b_2+a_2b_1)i#

#z_1-:z_2 = (a_1+b_1i)/(a_2+b_2i)#
#=((a_1+b_1i)(a_2-b_2i))/((a_2+b_2i)(a_2-b_2i))#
#=((a_1a_2+b_1b_2)+(a_2b_1-a_1b_2)i)/(a_2^2+b_2^2)#
#=(a_1a_2+b_1b_2)/(a_2^2+b_2^2) + (a_2b_1-a_1b_2)/(a_2^2+b_2^2)i#

For division, we used the fact that #(a+bi)(a-bi)=a^2+b^2#. Given a complex number #z=a+bi# we call #a-bi# the complex conjugate of #z# and denote it #bar(z)# It is a useful property (as seen above) that #zbar(z)# is always a real number.

The complex numbers have many useful applications and attributes, but one which is often encountered early is their use in factoring polynomials. If we limit ourselves to only real numbers, a polynomial such as #x^2+1# cannot be factored further, however if we allow for complex numbers, then we have #x^2+1=(x+i)(x-i)#.

In fact, if we allow for complex numbers, then any single-variable polynomial of degree #n# may be written as the product of #n# linear factors (possibly with some being the same). This result is known as the fundamental theorem of algebra, and, as the name indicates, is very important to algebra and has broad application.