In this tutorial, we will look at how to perform addition on complex numbers in Python with the help of some examples.
When you add two complex numbers, for example a+bj
and c+dj
, the resulting complex number is (a+c)+(b+d)j
.
How to add two or more complex numbers in Python?
You can use the addition operator +
to add two or more complex numbers in Python. The following is the syntax –
# add complex numbers z1 and z2 z1+z2
It gives you the complex number resulting from the addition of the corresponding real and imaginary coefficients together.
Examples
Let’s now look at some examples of using the above syntax to add some numbers together.
Example 1 – Add two complex numbers
Let’s add two complex numbers (both having non-zero real and imaginary parts) together using the +
operator.
# two complex numbers z1 = 2+3j z2 = 3+4j # add complex numbers print(z1+z2)
Output:
(5+7j)
You can see that in the resulting complex number, the real and the imaginary parts are the sums of the corresponding components from the individual complex numbers in the addition operation.
Introductory ⭐
- Harvard University Data Science: Learn R Basics for Data Science
- Standford University Data Science: Introduction to Machine Learning
- UC Davis Data Science: Learn SQL Basics for Data Science
- IBM Data Science: Professional Certificate in Data Science
- IBM Data Analysis: Professional Certificate in Data Analytics
- Google Data Analysis: Professional Certificate in Data Analytics
- IBM Data Science: Professional Certificate in Python Data Science
- IBM Data Engineering Fundamentals: Python Basics for Data Science
Intermediate ⭐⭐⭐
- Harvard University Learning Python for Data Science: Introduction to Data Science with Python
- Harvard University Computer Science Courses: Using Python for Research
- IBM Python Data Science: Visualizing Data with Python
- DeepLearning.AI Data Science and Machine Learning: Deep Learning Specialization
Advanced ⭐⭐⭐⭐⭐
- UC San Diego Data Science: Python for Data Science
- UC San Diego Data Science: Probability and Statistics in Data Science using Python
- Google Data Analysis: Professional Certificate in Advanced Data Analytics
- MIT Statistics and Data Science: Machine Learning with Python - from Linear Models to Deep Learning
- MIT Statistics and Data Science: MicroMasters® Program in Statistics and Data Science
🔎 Find Data Science Programs 👨💻 111,889 already enrolled
Disclaimer: Data Science Parichay is reader supported. When you purchase a course through a link on this site, we may earn a small commission at no additional cost to you. Earned commissions help support this website and its team of writers.
Example 2 – Add a real number with a complex number
Let’s now add a real number (a number without any imaginary component) and a complex number together.
# a real number and a complex number z1 = -3 z2 = 3+4j # add complex numbers print(z1+z2)
Output:
4j
We get the resulting complex number.
You can see that in this specific example, the resulting complex number is imaginary. This is because the real components cancel each other out during addition as they are of the same magnitude and the opposite sign.
Note that adding a real number with a complex number may or may not result in a completely imaginary number, it all depends on the real and the imaginary components of the complex numbers being added.
Example 3 – Add an imaginary number with a complex number
Let’s now add an imaginary number with a complex number.
# an imaginary number and a complex number z1 = -3j z2 = 3+4j # add complex numbers print(z1+z2)
Output:
(3+1j)
We get the resulting complex number.
Summary
In this tutorial, we looked at how we can use the addition operator, +
in Python to add two or more complex numbers in Python. The components of the resulting complex number are obtained from the addition of the corresponding real and imaginary components.
You may also be interested in –
- Practical Guide to Working with Complex Numbers in Python
- Python – Subtract Two Complex Numbers
- Python – Multiply Two Complex Numbers
- Python – Complex Number Division
- Python – Generate a Random Complex Number
- Python – Convert Complex Number to Polar Form
- Python – Get the Phase Angle of a Complex Number
- Python – Get the Absolute Value of a Complex Number
- Numpy – Get the Complex Conjugate
- Numpy – Get the Real Part of a Complex Number
- Numpy – Get the Imaginary Part of a Complex Number
- Numpy – Check If a Number is Real
- Numpy – Check If a Number is Complex
Subscribe to our newsletter for more informative guides and tutorials.
We do not spam and you can opt out any time.