Skip to content
geeksforgeeks
  • Tutorials
    • Python
    • Java
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
    • Practice Coding Problems
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Mathematics
  • Number System and Arithmetic
  • Algebra
  • Trigonometry
  • Statistics
  • Probability
  • Geometry
  • Mensuration
  • Calculus
  • Logarithms
Open In App
Next Article:
What are Complex Numbers?
Next article icon

What are Complex Numbers?

Last Updated : 30 Dec, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

A complex number is a term that can be shown as the sum of real and imaginary numbers. These are the numbers that can be written in the form of a + ib, where a and b both are real numbers. It is denoted by z. Here the value 'a' is called the real part which is denoted by Re(z), and 'b' is called the imaginary part Im(z) in form of a complex number.  It is also called an imaginary number. In complex number form a + bi ‘i’ is an imaginary number called “iota”. The value of i is (√-1) or we can write as i2 = -1. For example,

9 + 16i is a complex number, where 9 is a real number (Re) and 16i is an imaginary number (Im).

10 + 20i is a complex number where 10 is a real number (Re) and  20i is an imaginary number (Im)

Algebraic Operations on Complex number

A real number and imaginary number combination are called a Complex number. There are four types of algebraic operation of complex numbers,

Addition of Complex Numbers  

In this operation, we know that a complex number is of the form z = p + iq where a and b are real numbers. Now, consider two complex numbers z1 = p1 + iq1 and z2 = p2 + iq2. Therefore,  the addition of the complex numbers z1 and z2.

z1 + z2 = (p1 + p2) + i(q1 + q2)

Some more identities are:

z1 + z2 = z

z1 + z2 = z2 + z1

(z1 + z2) + z3 = z1 + (z2 + z3)

z + (-z) = 0

(p + iq) + (0 + i0) = p + iq

The resulting complex number real part is the sum of the real part of each complex number. The resulting complex number imaginary part is equal to the sum of the imaginary part of each complex number.

Subtraction of Complex Numbers

In this operation of the complex numbers z1 = p1 + iq1 and z2 = p2 + iq2, therefore the difference of z1 and z2  which is z1-z2 is defined as,

z1 - z2 = (p1 - p2) + i(q1 - q2)

Multiplication of Complex Numbers

In this operation of multiplication of Two Complex Numbers. We know that (x + y)(z + w).

= xz + xw + zy + zw

Similarly, the complex numbers z1 = p1 + iq1 and z2 = p2 + iq2

To find z1z2:  

z1 z2 = (p1 + iq1)(p2 + iq2)

z1 z2 = p1 p2 + p1 q2i + q1 p2i + q1q2i2

As we know,  i2 = -1,  

Therefore,

z1 z2 = (p1 p2 – q1 q2) + i(p1 q2 + p2 q1)

Some identities are:

z1 × z2 = z

z1.z2 = z2.z1

z1(z2.z3) = (z1.z2)z3

z1(z2 + z3) = z1.z2 + z1.z3

Division of Complex Numbers  

In this operation of complex number z1 = p1 + iq1 and z2 = p2 + iq2, therefore, to find z1/z2, we have to multiply the numerator and denominator with the conjugate of z2.

The division of complex numbers:

Let z1 = p1 + iq1 and z2 = p2 + iq2,  

z1/z2 = (p1 + iq1)/(p2 + iq2)

Hence, (p1 + iq1)/(p2 + iq2) = [(p1 + iq1)(p2 - iq2)] / [(p2 + iq2)(p2 - iq2)]

            (p1 + iq1)/(p2 + iq2) = [(p1p2) - (p1q2i) + (p2q1i) + q1q2)] / [(p22 + q22)]

            (p1 + iq1)/(p2 + iq2) = [(p1p2) + (q1q2) + i(p2q1 - p1q2)] / (p22 + q22)

z1/z2 = (p1p2) + (q1q2) / (p22 + q22) + i(p2q1 - p1q2) / (p22 + q22)

Rules of imaginary numbers

i = √-1

i2 = -1

i3 = -i

i4 = 1

i4n = 1

i4n-1 = -1

Sample Questions

Question 1: Perform the indicated operation and write the answer in standard form: 4+5i/4-5i

Solution: 

Given : 2+5i/2-5i

to simplifying multiply the numerator and denominator by the conjugate of denominator

= (2+5i/2-5i) × (2+5i)(2+5i)

= {(2+5i)2}/ {(2)2- (5i)2}

= {4 + (5i)2 + 2(2)(5i)} / {4 - 25(i)2}

= {4 +25(i)2 + 20i} / {4 +25}

= {4 - 25 + 20i} / 29

= (-21 + 20i) / 29

= -21/29 + 20/29i 

Question 2: Simplify (5 + 2i) – (9 + 7i), Find the square of imaginary number?

Solution:  

Given : (5 + 2i) – (9 + 7i)

                     = 5+2i -9 -7i

                     = (5 – 9) + (2 – 7)i

                     = (-4 – 5i)

Now imaginary number = -5i

(-5i)2 = -5i x -5i

       = 25i2

       = 25(-1)

       = - 25

Question 3: Find the additive inverse of complex number 9 + 7i?

Solution:

It is defined as the value which on adding with the original number results in  zero value. An additive inverse of a complex number is the value we add to a number to yield zero.  

So here the additive inverse of complex number 9 + 7i is -(9 + 7i)

= -9 - 7i

Question 4: Express (5 -.3i)/(9 + 2i) in standard form?

Solution:

Given: (5 - 3i)/(9 + 2i)

Multiplying with the conjugate of denominators,

= {(5 - 3i)/(9 + 2i) × (9 - 2i)/(9 - 2i)}

= {(5 - 3i)(9 - 2i)} / {(9)2 - (2i)2}

= {45- 10i - 27i + 6i2} / (81- 4i2)

= {45 - 37i + 6(-1)} / (81+4)

= ( 39 - 37i) / 85

= 39/85 - 37/85i

Question 5: Find the multiplicative inverse of 2 - 8i?

Solution:

The multiplicative inverse of a complex number z is simply 1/z.

It is denoted as : 1 / z  or  z-1 (Inverse of z)

       here z = 2 - 8i

Therefore z = 1/z

                    = 1 / (2 - 8i)

Now rationalizing

                 = 1/(2 - 8i) x (2 + 8i)/(2 +8i)

                 = (2 + 8i) / {(2)2 - 82i2}

                 = (2 + 8i) / { 4 + 64}

                 = (2 + 8i)/ (68)

                 = 2/68 + 8i/68

                 = 1/34 + 2/17 i 

Question 6: Simplify: (9-4i)(7-7i).

Solution:

Given:  (9-4i)(7-7i)

= 63 - 63i -28i +28i2

= 63 - 63i - 28i + 28(-1)

= 63- 91i - 28

= 35 - 91i


Next Article
What are Complex Numbers?

N

Nishant_Singh
Improve
Article Tags :
  • Mathematics
  • School Learning
  • Maths MAQ
  • Complex Numbers - MAQ
  • Math-Concepts

Similar Reads

    What is Z Bar in Complex Numbers?
    Answer: We refer to \bar{z} or the complex number obtained by altering the sign of the imaginary part (changing positive to negative or vice versa) as the conjugate of z.A complex number is defined as the addition of a real number and an imaginary number. It is represented as "z" and is written in i
    10 min read
    Complex Numbers
    Complex numbers are an essential concept in mathematics, extending the idea of numbers to include solutions for equations that don't have real solutions. Complex numbers have applications in many scientific research areas, signal processing, electromagnetism, fluid dynamics, quantum mechanics, and v
    12 min read
    What are imaginary numbers?
    If you are wondering what are imaginary numbers and thinking that there must be a meaning for imaginary numbers, Then let's get into the article to learn about what exactly are imaginary numbers.Imaginary numbersThe imaginary numbers are the numbers which, when squared, give a negative number. Imagi
    7 min read
    Algebraic Operations on Complex Numbers
    A complex number is a number that includes both a real and an imaginary part. It is written in the form:z = a + biWhere:a is the real part,b is the imaginary part,i is the imaginary unit, satisfying i2 = −1.Algebraic operations on complex numbers follow specific rules based on their real and imagina
    7 min read
    What are the Arithmetic rules for Complex Numbers?
    In the Number system, the real numbers can be called the sum of the rational and the irrational numbers. All arithmetic operations may be done on these numbers in general, and they can also be represented on a number line. Real numbers are divided into several groups, including natural and whole num
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences