Complex Analysis for Mathematics and Engineering, 5th Edition, 2006
Chapter 1 Complex Numbers
1.1 The Origin of Complex Numbers
Complex analysis can roughly be thought of as that subject which applies the ideas of calculus to imaginary numbers. But what exactly are imaginary numbers? Usually, students learn about them in high school with introductory remarks from their teachers along the following lines: ``We can't take the square root of a negative number. But, let's pretend we can---and since these numbers are really imaginary, it will be convenient notationally to set
.'' Rules are then learned for doing arithmetic with these numbers. The rules make sense. If
, it stands to reason that
. On the other hand, it is not uncommon for students to wonder all along whether they are really doing magic rather than mathematics.
If you ever felt that way, congratulate yourself! You're in the company of some of the great mathematicians from the sixteenth through the nineteenth centuries. They, too, were perplexed with the notion of roots of negative numbers. The purpose of this section is to highlight some of the episodes in what turns out to be a very colorful history of how imaginary numbers were introduced, investigated, avoided, mocked, and---eventually---accepted by the mathematical community. We intend to show you that, contrary to popular belief, there is really nothing imaginary about "imaginary numbers'' at all. In a metaphysical sense, they are just as real as are "real numbers.''
Our story begins in 1545. In that year the Italian mathematician Girolamo Cardano published Ars Magna (The Great Art), a 40-chapter masterpiece in which he gave for the first time an algebraic solution to the general cubic equation
.
His technique involved transforming this equation into what is called a depressed cubic. This is a cubic equation without the term, so that it can be written as
.
Ferro and Tartaglia showed that one solution to this equation is:
.
Example in narrative in Section 1.1.
Consider the simple depressed cubic equation
.
Maple can easily find all the solutions!
> |
x:='x':
eqn := x^3 - 15 *x - 4 = 0:
`Solve the equation `,eqn; ` `;
solset := {solve(eqn, x )}:
`Solution set `, solset; |
We want to investigate the Ferro-Tartaglia formula and verify that
is a solution.
> |
b:='b': c:='c': w:='w': x:='x': X:='X':
x^3 + b*x + c = 0;
x:=(-c/2 + sqrt(c^2/4 +b^3/27))^(1/3) +
(-c/2 - sqrt(c^2/4 +b^3/27))^(1/3):
`x ` = x; ` `;
`Substitute`;
b := -15:
c := -4:
x :='x':
`b ` = b, `c ` = c;
eqn := x^3 + b*x + c = 0: eqn;
x:=(-c/2 + sqrt(c^2/4 +b^3/27))^(1/3) -
( c/2 + sqrt(c^2/4 +b^3/27))^(1/3):
`x ` = x; ` `;
`The result is:`;
eqn; |
The principal value
is correct. However, a different choice (or branch) of
the cube root must be used to compute the
. It's value is obtained by multiplying
by a "cube root of
", the special cube root is
. Now compute the second
root using
. And then compute using
.
> |
r2 := (-2 + 11*I)^(1/3)*(-1)^(2/3):
`r2 = (-2 + 11 i)^(1/3)` = r2;
r1 := (2 + 11*I)^(1/3):
`r1 ` = r1;` `;
r2 := evalc((-2 + 11*I)^(1/3)*(-1)^(2/3)):
`r2 ` = expand(r2);
r1 := evalc((2 + 11*I)^(1/3)):
`r1 ` = r1; ` `;
`Use the roots to form x = r1 - r2.`;
`Then substitute x into the cubic equation:`;
x:='x':
eqn := x^3 -15*x - 4 = 0:
eqn;
x := expand(r1 - r2):
`x ` = x; ` `;
eqn;
`Expand things on the left side and obtain:`;
evalf(eqn); |
> |
`We could use numerical approximations for the roots`;
`r2 ` = evalf(r2);
`r1 ` = evalf(r1);
`And use a numerical approximation for x = r1 - r2.`;
`x ` = evalf(r1 - r2); ` `;
`Then substitute x into the cubic equation:`;
x:='x':
eqn := x^3 -15*x - 4 = 0:
eqn;
x := evalf(r1 - r2):
eqn,` Look, it is almost zero!`; |
Chapter 1 Complex Numbers - Links
1.1 The Origin of Complex Numbers
1.2 The Algebra of Complex Numbers
1.3 The Geometry of Complex Numbers
1.4 The Geometry of Complex Numbers, Continued
1.5 The Algebra of Complex Numbers, Revisited
1.6 The Topology of Complex Numbers
Library Research Experience for Undergraduates
Complex Numbers
DeMoivre's Theorem
Roots of Cubic Equations
Roots of Quartic Equations
Complex Roots of Polynomials
Quaternions
History of Complex Numbers
Return to the Complex Analysis Project
(c) 2006 John H. Mathews, Russell W. Howell
Legal Notice: The copyright for this application is owned by the author(s). Neither Maplesoft nor the author are responsible for any errors contained within and are not liable for any damages resulting from the use of this material. This application is intended for non-commercial, non-profit use only. Contact the author for permission if you wish to use this application in for-profit activities.