0% found this document useful (0 votes)
2 views5 pages

AdMathLab1

The document outlines the objectives and discussions related to complex numbers, including their forms and operations. It provides instructions for using MATLAB to create and manipulate complex numbers, as well as convert between different forms. An activity section is included for students to practice representing and simplifying complex numbers using MATLAB.

Uploaded by

riariel6221
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
2 views5 pages

AdMathLab1

The document outlines the objectives and discussions related to complex numbers, including their forms and operations. It provides instructions for using MATLAB to create and manipulate complex numbers, as well as convert between different forms. An activity section is included for students to practice representing and simplifying complex numbers using MATLAB.

Uploaded by

riariel6221
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 5

Name : Student No.

:
Course : Date :

LESSON 1: Forms of Complex Numbers & Evaluating Complex Numbers Using


Different Mathematical Operations

Objectives: Learn different forms of complex numbers, including conversion of one


form to another form and evaluation of complex numbers using different mathematical
operations.

Discussion: A complex number is of the form z = x + jy, where x and y are real
numbers. The x is the real part and jy is the imaginary part. The conjugate of z = x + jy
is the complex number z* = x – jy. The j operator operates in counterclockwise (ccw)
direction by 90o with respect to the reference axis with changing the magnitude. There
are four different forms of complex numbers namely: rectangular/Cartesian form, polar

rectangular/Cartesian form if A = a + jb, in polar form if A = A ∠ θ, in exponential form if


form, exponential form and trigonometric form. A complex number is said to be in

A = Ae^jθ, and in trigonometric form if A = [cosθ + jsinθ]A.

Instructions: Perform the following accordingly, then answer the questions that follow.
Place your answers on the space provided. Place the result of the following MATLAB
instructions on the space provided.

MATLAB Session

1. In MATLAB®, i and j represent the basic imaginary unit. You can use them to
create complex numbers such as 2i+5. You can also determine the real and
imaginary parts of complex numbers and compute other common values such as
phase and angle.

2. The following are the basic functions used in complex numbers:


3. The following statement shows one way of creating a complex value in MATLAB.
The variable x is assigned a complex number with a real part of 2 and an imaginary
part of 3:
>> x = 2 + 3i

4. Another way to create a complex number is using the complex function. This
function combines two numeric inputs into a complex output, making the first input
real and the second imaginary:
>> x = rand(3) * 5;
>> y = rand(3) * -8;
>> z = complex(x, y)

What happens after executing the above instruction?

5. You can separate a complex number into its real and imaginary parts using
the real and imag functions:
>> zr = real(z)

>> zi = imag(z)

6. Converting rectangular form to polar form:


>> x = 2 + j3;
>> rho = abs(x);
>> theta = angle(x);
>> X = rho * exp(j*theta)

7. Converting polar form to rectangular form:


>> z = 0.5;
>> theta = pi/4;
>> [X, Y] = pol2cart(theta, z)
Activity
Use MATLAB to solve for the following.

1. Represent the solution in the Cartesian form a + bi.

a.

b.

c.

d.

e.

2. Represent the following complex numbers in polar form:

a.

b.

c.
d.

e.

f.

3. Simplify the following complex numbers:

a. (3 + j5) + (2 – j2)
b. (12 – j2) – (3 + j5)
c. (3∠25) * (2∠45)
d. (12∠27) / (4∠20)
e. (3 + j5) * (2 – j2)
f. [(3 + j5) * (3∠25) + (2 – j2)] / [(2∠45) - (4∠20) + (12 – j2)]

You might also like