Homework, tests, and solutions from previous offerings of this course are off limits, under the honor code.
Problem 1
Form a study group of 3-4 members. With your group, discuss and synthesize the major themes of this week of lectures. Turn in a one page summary of your discussion. You need turn in only one summary per group, but include the names of all group members. Please do not write up just a "table of contents."
Problem 2
Construct a WWW page (with your picture) and email Mike Wakin (wakin@rice.edu) your name (as you want it to appear on the class web page) and the URL. If you need assistance setting up your page or taking/scanning a picture (both are easy!), ask your classmates.
Problem 3: Learning Styles
Follow this learning styles link (also found on the Elec 301 web page) and learn about the basics of learning styles. Write a short summary of what you learned. Also, complete the "Index of learning styles" self-scoring test on the web and bring your results to class.
Problem 4
Make sure you know the material in Lathi, Chapter B, Sections 1-4, 6.1, 6.2, 7. Specifically, be sure to review topics such as:
- complex arithmetic (adding, multiplying, powers)
- finding (complex) roots of polynomials
- complex plane and plotting roots
- vectors (adding, inner products)
Problem 5: Complex Number Applet
Reacquaint yourself with complex numbers by going to the course applets web page and clicking on the Complex Numbers applet (may take a few seconds to load).
(a) Change the default add function to exponential (exp).
Click on the complex plane to get a blue arrow, which is
your complex number
(b) Experiment with the functions absolute (abs), real part (re), and imaginary part (im) and report your findings.
Problem 6: Complex Arithmetic
Reduce the following to the Cartesian form,
(a)
(b)
(c)
(d)
(e)
Problem 7: Roots of Polynomials
Find the roots of each of the following polynomials (show
your work). Use MATLAB to check your answer with the
roots command and to plot the roots in the
complex plane. Mark the root locations with an 'o'. Put
all of the roots on the same plot and identify the
corresponding polynomial (
(a)
(b)
(c)
(d)
(e)
(f)
Problem 8: Nth Roots of Unity
(a) Why?
(b) Let
(c) Let
Problem 9: Writing Vectors in Terms of Other Vectors
A pair of vectors
(a) Write
(b) More generally, write
(c) Write the answer to (a) in matrix form,
i.e. find a 2×2 matrix
(d) Repeat (b) and (c) for a general set of linearly
independent vectors
Problem 10: Fun with Fractals
A Julia set
For most values of
(a) Let
(b) Let
(c) Create an approximate picture of a Julia set in MATLAB.
The easiest way is to create a matrix of complex
numbers, decide for each number whether it belongs to
imagesc command. To
determine whether a number belongs to
N = 100; % Max # of iterations
M = 2; % Magnitude threshold
mu = -0.75; % Julia parameter
realVals = [-1.6:0.01:1.6];
imagVals = [-1.2:0.01:1.2];
xVals = ones(length(imagVals),1) * realVals + ...
j*imagVals'*ones(1,length(realVals));
Jmap = ones(size(xVals));
g = xVals; % Start with g0
% Insert code here to fill in elements of Jmap. Leave a '1'
% in locations where x belongs to J, insert '0' in the
% locations otherwise. It is not necessary to store all 100
% iterations of g!
imagesc(realVals, imagVals, Jmap);
colormap gray;
xlabel('Re(x)');
ylabel('Imag(x)');
This creates the following picture for
![]() |
Using the same values for
Just for Fun:
imagesc(log(Jmap)) and
colormap jet for a neat picture.










"Señales y Sistemas is a Spanish translation of Dr. Rich Baraniuk's collection Signals and Systems (col10064). The translation was coordinated by an an assistant electrical engineering professor […]"