Chapter 15 Complex Numbers

Slides:



Advertisements
Similar presentations
TWO STEP EQUATIONS 1. SOLVE FOR X 2. DO THE ADDITION STEP FIRST
Advertisements

Chapter 8 Introduction to Number Theory. 2 Contents Prime Numbers Fermats and Eulers Theorems.
Advanced Piloting Cruise Plot.
1
Feichter_DPG-SYKL03_Bild-01. Feichter_DPG-SYKL03_Bild-02.
© 2008 Pearson Addison Wesley. All rights reserved Chapter Seven Costs.
Copyright © 2003 Pearson Education, Inc. Slide 1 Computer Systems Organization & Architecture Chapters 8-12 John D. Carpinelli.
Chapter 1 The Study of Body Function Image PowerPoint
Copyright © 2011, Elsevier Inc. All rights reserved. Chapter 6 Author: Julia Richards and R. Scott Hawley.
Author: Julia Richards and R. Scott Hawley
1 Copyright © 2013 Elsevier Inc. All rights reserved. Appendix 01.
Properties Use, share, or modify this drill on mathematic properties. There is too much material for a single class, so you’ll have to select for your.
UNITED NATIONS Shipment Details Report – January 2006.
1 RA I Sub-Regional Training Seminar on CLIMAT&CLIMAT TEMP Reporting Casablanca, Morocco, 20 – 22 December 2005 Status of observing programmes in RA I.
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Jeopardy Q 1 Q 6 Q 11 Q 16 Q 21 Q 2 Q 7 Q 12 Q 17 Q 22 Q 3 Q 8 Q 13
Properties of Real Numbers CommutativeAssociativeDistributive Identity + × Inverse + ×
Arithmetic and Geometric Means
Exit a Customer Chapter 8. Exit a Customer 8-2 Objectives Perform exit summary process consisting of the following steps: Review service records Close.
DIVIDING INTEGERS 1. IF THE SIGNS ARE THE SAME THE ANSWER IS POSITIVE 2. IF THE SIGNS ARE DIFFERENT THE ANSWER IS NEGATIVE.
FACTORING ax2 + bx + c Think “unfoil” Work down, Show all steps.
Addition Facts
Year 6 mental test 5 second questions
Year 6 mental test 10 second questions
Around the World AdditionSubtraction MultiplicationDivision AdditionSubtraction MultiplicationDivision.
Solve Multi-step Equations
REVIEW: Arthropod ID. 1. Name the subphylum. 2. Name the subphylum. 3. Name the order.
Math Review with Matlab:
PP Test Review Sections 6-1 to 6-6
ABC Technology Project
EU market situation for eggs and poultry Management Committee 20 October 2011.
Slide 6-1 COMPLEX NUMBERS AND POLAR COORDINATES 8.1 Complex Numbers 8.2 Trigonometric Form for Complex Numbers Chapter 8.
Copyright © 2013, 2009, 2005 Pearson Education, Inc.
Chapter 2 Complex Numbers
MAT 205 F08 Chapter 12 Complex Numbers.
Math Review with Matlab:
LIAL HORNSBY SCHNEIDER
2 |SharePoint Saturday New York City
Green Eggs and Ham.
VOORBLAD.
Copyright © 2012, Elsevier Inc. All rights Reserved. 1 Chapter 7 Modeling Structure with Blocks.
Factor P 16 8(8-5ab) 4(d² + 4) 3rs(2r – s) 15cd(1 + 2cd) 8(4a² + 3b²)
Basel-ICU-Journal Challenge18/20/ Basel-ICU-Journal Challenge8/20/2014.
1..
© 2012 National Heart Foundation of Australia. Slide 2.
Understanding Generalist Practice, 5e, Kirst-Ashman/Hull
Note to the teacher: Was 28. A. to B. you C. said D. on Note to the teacher: Make this slide correct answer be C and sound to be “said”. to said you on.
Addition 1’s to 20.
Model and Relationships 6 M 1 M M M M M M M M M M M M M M M M
25 seconds left…...
Subtraction: Adding UP
U1A L1 Examples FACTORING REVIEW EXAMPLES.
Januar MDMDFSSMDMDFSSS
Week 1.
Analyzing Genes and Genomes
We will resume in: 25 Minutes.
©Brooks/Cole, 2001 Chapter 12 Derived Types-- Enumerated, Structure and Union.
Essential Cell Biology
Exponents and Radicals
Intracellular Compartments and Transport
PSSA Preparation.
Essential Cell Biology
Immunobiology: The Immune System in Health & Disease Sixth Edition
1 Chapter 13 Nuclear Magnetic Resonance Spectroscopy.
Energy Generation in Mitochondria and Chlorplasts
Presentation transcript:

Chapter 15 Complex Numbers A few operations with complex numbers were used earlier in the text and it was assumed that the reader had some basic knowledge of the subject. The subject will now be approached from a broader perspective and many of the operations will be developed in detail. To deal with Fourier analysis in Chapter 16, complex number operations are required.

Complex Numbers and Vectors In a sense, complex numbers are two-dimensional vectors. In fact, some of the basic arithmetic operations such as addition and subtraction are the same as those that could be performed with the spatial vector forms of Chapter 14 in two dimensions. However, once the process of multiplication is reached, the theory of complex number operations diverges significantly from that of spatial vectors.

Rectangular Coordinate System The development begins with the two-dimensional rectangular coordinate system shown on the next slide. The two axes are labeled as x and y. In complex variable theory, the x-axis is called the real axis and the y-axis is called the imaginary axis. An imaginary number is based on the definition that follows.

Complex Plane

Form of Complex Number

Conversion Between Forms

Euler’s Formula

Example 15-1. Convert the following complex number to polar form:

Example 15-2. Convert the following complex number to polar form:

Example 15-3. Convert the following complex number to rectangular form:

Example 15-4. Convert the following complex number to rectangular form:

Addition of Two Complex Numbers

Addition of Two Complex Numbers

Subtraction of Two Complex Numbers

Subtraction of Two Complex Numbers

Example 15-5. Determine the sum of the following complex numbers:

Example 15-6. For the numbers that follow, determine zdiff = z1-z2.

Multiplication in Polar Form

Division in Polar Form

Multiplication in Rectangular Form

Complex Conjugate

Division in Rectangular Form

Example 15-7. Determine the product of the following 2 complex numbers:

Example 15-8. Repeat previous example using rectangular forms.

Example 15-9. Determine the quotient z1/z2 for the following 2 numbers:

Example 15-10. Repeat previous example using rectangular forms.

Exponentiation of Complex Numbers: Integer Power

Roots of Complex Numbers

Example 15-11. For the value of z below, determine z6 = z6.

Example 15-12. Determine the 4 roots of s4 + 1 = 0.

MATLAB Complex Number Operations: Entering in Rectangular Form >> z = 3 + 4i z = 3.0000 + 4.0000i >> z = 3 + 4j The i or j may precede the value, but the multiplication symbol (*) is required.

MATLAB Complex Number Operations: Entering in Polar Form >> z = 5*exp(0.9273i) z = 3.0000 + 4.0000i >> z = 5*exp((pi/180)*53.13i) This result indicates that polar to rectangular conversion occurs automatically upon entering the number in polar form.

MATLAB Rectangular to Polar Conversion >> z = 3 + 4i z = 3.0000 + 4.0000i >> r = abs(z) r = 5 >> theta = angle(z) theta = 0.9273

Other MATLAB Operations >> z_conj = conj(z) z_conj = 3.0000 - 4.0000i >>real(z) ans = 3 >> imag(z) 4