Skip to content
In modern mathematics, the Whitney Embedding Theorem was proven by Hassler Whitney in nineteen thirty six.

Limits (Formal Definition)

Please read Introduction to Limits first

Approaching ...

Sometimes we can't work something out directly ... but we can see what it should be as we get closer and closer!

Example:
(x2 − 1) (x − 1)

Now 0/0 is a difficulty! We don't really know the value of 0/0 (it is "indeterminate"), so we need another way of answering this.

So instead of trying to work it out for x=1 let's try approaching it closer and closer:

Let's work it out for x=1:

(12 − 1) (1 − 1) = (1 − 1) (1 − 1) = 0 0

Example Continued:

x   (x2 − 1) (x − 1)
0.5   1.50000
0.9   1.90000
0.99   1.99000
0.999   1.99900
0.9999   1.99990
0.99999   1.99999
...   ...

Welcome to our store

Complex Plane

Illustration of a commercial airplane with 'complex' parts labeled. No, not that complex plane ...
... this complex plane:

The complex plane showing the horizontal Real axis and vertical Imaginary axis.

a plane for complex numbers!
Also called an "Argand Diagram"

Real and Imaginary make Complex

A Complex Number is a combination of a Real Number and an Imaginary Number:

A Real Number is the type of number we use every day.

Examples: 12.38, ½, 0, −2000

When we square a Real Number we get a positive (or zero) result:

22 = 2 × 2 = 4
12 = 1 × 1 = 1
02 = 0 × 0 = 0

What can we square to get −1?

?2 = −1

Squaring −1 doesn't work because multiplying negatives gives a positive: (−1) × (−1) = +1, and no other Real Number works either.

So it seems mathematics is incomplete ...

... but we can fill the gap by imagining there's a number that, when multiplied by itself, gives −1
(call it i for imaginary):

i2 = −1

An Imaginary Number, when squared gives a negative result

imaginary squared is negative.

Examples: 5i, -3.6i, i/2, 500i

And together:

A Complex Number is a combination of a Real Number and an Imaginary Number

Examples: 3.6 + 4i, −0.02 + 1.2i, 25 − 0.3i, 0 + 2i

Putting a Complex Number on a Plane

You may be familiar with the number line:

number line -10 to +10

But where do we put a complex number like 3+4i ?

Let's have the real number line go left-right as usual, and have the imaginary number line go up-and-down:

We can then plot a complex number like 3 + 4i :

  • 3 units along (the real axis),
  • and 4 units up (the imaginary axis)
  Point at 3 on the real axis and 4 on the imaginary axis.
     

And here's 4 − 2i :

  • 4 units along (the real axis),
  • and 2 units down (the imaginary axis)
  complex plane 4-2i

And that's the complex plane:

  • complex because it is a combination of real and imaginary,
  • plane because it is like a geometric plane (2 dimensional)

Whole New World

Now let's bring the idea of a plane (as seen in Cartesian coordinates, Polar coordinates, and so on) to complex numbers.

It will open up a whole new world of numbers that are more complete and elegant, as we'll see.

Complex Number as a Vector

We can think of a complex number as .

vector
This is a vector.
It has magnitude (length) and direction.

And here's the complex number 3 + 4i
as a vector:
  complex plane 3+4i vector

Adding

We can add complex numbers as vectors, too:

To add the complex numbers 3 + 5i and 4 − 3i :

  • add the real numbers, and
  • add the imaginary numbers

separately, like this:

(3 + 5i) + (4 − 3i) =(3 + 4) + (5 − 3)i 7 + 2i
  complex plane vector addition

Polar Form

Let's use 3 + 4i again:   Point at 3 on the real axis and 4 on the imaginary axis.
     

Here it is in polar form:

  complex plane 3-4i is polar 5 at 0.927

So the complex number 3 + 4i can also be shown as distance (5) and angle (0.927 radians).

Those two values (distance and angle) have special names:

  • Modulus (r): The distance from the origin to the point. For 3 + 4i, the modulus is 5.
  • Argument (θ): The angle measured counterclockwise from the positive Real axis. For 3 + 4i, the argument is 0.927 radians (or about 53.1°)
Modulus is often shown using vertical bars, like this:
|3 + 4i| = 5

Let's see how to convert from one form to the other using Cartesian to Polar conversion:

Example: the number 3 + 4i

From 3 + 4i :

  • Modulus (r) = √(x2 + y2) = √(32 + 42) = √25 = 5
  • Argument (θ) = tan-1 (y/x) = tan-1 (4/3) = 0.927 (to 3 decimals)

And we get distance (5) and angle (0.927 radians)

Back again:

  • x = r × cos( θ ) = 5 × cos( 0.927 ) = 5 × 0.6002... = 3 (close enough)
  • y = r × sin( θ ) = 5 × sin( 0.927 ) = 5 × 0.7998... = 4 (close enough)

And distance 5 and angle 0.927 radians becomes 3 and 4 again.

In fact a common way to write a complex number in Polar form is

x + iy= r cos θ + i r sin θ = r(cos θ + i sin θ)

And "cos θ + i sin θ" is often shortened to "cis θ", so:

x + iy = r cis θ

cis is just shorthand for cos θ + i sin θ

So we can write:

3 + 4i = 5 cis 0.927

In some subjects, like electronics, "cis" is used a lot!

Distance

The distance between two complex numbers, z1 and z2, is the straight-line distance between their points on the complex plane.

To find the distance, we simply calculate the modulus of their difference:

Distance = |z1 − z2|

Why it works: when we subtract z2 from z1, we get a new complex number that is the horizontal and vertical gaps between them. Taking the modulus gives us the straight-line distance.

Find the distance between z1 = 2 + 3i and z2 = 5 − i:

Find the difference:

z1 − z2 =
(2 − 5) + (3 − (−1))i
=
−3 + 4i

Calculate the modulus:

|−3 + 4i| =
√((−3)2 + 42)
=
√(9 + 16)
=
√(25)
=
5

Midpoint

The midpoint between two complex numbers is the exact center point between them. To find it, we simply calculate the average of the two numbers:

Midpoint = z1 + z22

Why it works: Adding the two complex numbers and dividing by 2 automatically averages their Real parts (horizontal axis) and Imaginary parts (vertical axis) at the same time.

Find the midpoint between z1 = 2 + 3i and z2 = 5 − i:

Add the numbers together:

z1 + z2 =
(2 + 5) + (3 + (−1))i
=
7 + 2i

Divide by 2:

7 + 2i2 = 3.5 + i

Summary

  • The complex plane is a plane with:
    • real numbers running left-right and
    • imaginary numbers running up-down
  • To convert from Cartesian to Polar Form:
    • r = √(x2 + y2)
    • θ = tan-1 ( y / x )
  • To convert from Polar to Cartesian Form:
    • x = r × cos( θ )
    • y = r × sin( θ )
  • Polar form r cos θ + i r sin θ is often shortened to r cis θ

Next ... learn about Complex Number Multiplication.

Mathopolis:Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8 Q9 Q10
Education Information Services
International Journal of Innovation Science (IJIS) is a forum for the exchange of advanced knowledge in innovation, including emerging technologies and best practices, tools and techniques, metrics, and organization design and culture;
  • inline math mode is used to write formulas that are part of a paragraph
  • display math mode is used to write expressions that are not part of a paragraph, and are therefore put on separate lines

LaTeX's features for typesetting mathematics make it a compelling choice for writing technical documents. This article shows the most basic commands needed to get started with writing maths using LaTeX.

\documentclass{article}
\begin{document}

The well known Pythagorean theorem \(x^2 + y^2 = z^2\) was 
proved to be invalid for other exponents. 
Meaning the next equation has no integer solutions:

\[ x^n + y^n = z^n \]

\end{document}

Return to School Today.
Short form Apply Today
Answer a few questions below to get matched with programs that interest you. Grant Programs currently provide up to $7,395* per year to those who qualify.
1. What's your gender?
2. Are you a citizen of the United States?
3. Do you make less than $80,000 a year?
4. Were you born on or before 1977?
You must be 18 or older and have a high school diploma or GED to qualify
Processing answers...
Grant Programs currently provide up to $7,395* per year to those who qualify.
Returning to school is both thrilling and difficult. Considering your desired level of study and professional aspirations, we can assist you in selecting the ideal organization. You can match with colleges and institutions in a matter of minutes.
Our website provides helpful information. Presented information and data are subject to change. Grants or funding may be temporarily paused. By proceeding, you acknowledge it is your responsibility to verify. Inclusion on this website does not imply or represent a direct relationship with the company, or brand. Information, though believed correct at the time of publication, may not be correct, and no warranty is provided. Contact the clinical company to verify any information before relying on it. This funding may be available for those who qualify. The displayed options may include sponsored or recommended results, not necessarily based on your preferences.California Consumer Protection Act (CCPA). If you are a California resident, you have the right to direct us to not sell your personal information to third parties by Contacting us with a "California Resident Opt-Out Request" with the message along with your email address simply label "California Resident Opt-Out Request". More information about what we collect and how we share your personal information is available in our privacy policy.


More information about what we collect and how we share your personal information is available in our Privacy Policy.

*https://studentaid.ed.gov/types/grants-scholarships/pell
© 2026 | Terms | Privacy | Contact