<< Chapter < Page Chapter >> Page >
Homework 1 problem set for Elec301 at Rice University.

Noon, Thursday, September 5, 2002

Assignment 1

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 yourdiscussion. You need turn in only one summary per group, but include the names of all group members. Please do notwrite 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 theclass 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 sureto 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 isyour complex number z . Click again anywhere on the complex plane to get a yellow arrow,which is equal to z . Now drag the tip of the blue arrow along the unit circle on with z 1 (smaller circle). For which values of z on the unit circle does z also lie on the unit circle? Why?

(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 . Do not use your calculator!

(a) -1 2 20

(b) 1 2 3 4

(c) 1 3 3

(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'. Putall of the roots on the same plot and identify the corresponding polynomial ( a , b , etc. ..).

(a) z 2 4 z

(b) z 2 4 z 4

(c) z 2 4 z 8

(d) z 2 8

(e) z 2 4 z 8

(f) 2 z 2 4 z 8

Problem 8: nth roots of unity

2 N is called an Nth Root of Unity .

(a) Why?

(b) Let z 2 7 . Draw z z 2 z 7 in the complex plane.

(c) Let z 4 7 . Draw z z 2 z 7 in the complex plane.

Problem 9: writing vectors in terms of other vectors

A pair of vectors u 2 and v 2 are called linearly independent if u v 0 if and only if 0 It is a fact that we can write any vector in 2 as a weighted sum (or linear combination ) of any two linearly independent vectors, where the weights and are complex-valued.

(a) Write 3 4 6 2 as a linear combination of 1 2 and -5 3 . That is, find and such that 3 4 6 2 1 2 -5 3

(b) More generally, write x x 1 x 2 as a linear combination of 1 2 and -5 3 . We will denote the answer for a given x as x and x .

(c) Write the answer to (a) in matrix form, i.e. find a 22 matrix A such that A x 1 x 2 x x

(d) Repeat (b) and (c) for a general set of linearly independent vectors u and v .

Problem 10: fun with fractals

A Julia set J is obtained by characterizing points in the complex plane. Specifically,let f x x 2 with complex, and define g 0 x x g 1 x f g 0 x f x g 2 x f g 1 x f f x g n x f g n 1 x Then for each x in the complex plane, we say x J if the sequence g 0 x g 1 x g 2 x does not tend to infinity. Notice that if x J , then each element of the sequence g 0 x g 1 x g 2 x also belongs to J .

For most values of , the boundary of a Julia set is a fractal curve - it contains"jagged" detail no matter how far you zoom in on it. The well-known Mandelbrot set contains all values of for which the corresponding Julia set is connected.

(a) Let -1 . Is x 1 in J ?

(b) Let 0 . What conditions on x ensure that x belongs to J ?

(c) Create an approximate picture of a Julia set in MATLAB. The easiest way is to create a matrix of complexnumbers, decide for each number whether it belongs to J , and plot the results using the imagesc command. To determine whether a number belongs to J , it is helpful to define a limit N on the number of iterations of g . For a given x , if the magnitude g n x remains below some threshold M for all 0 n N , we say that x belongs to J . The code below will help you get started:

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 -0.75 , N 100 , and M 2 .

Example image where the x-axis is x and the y-axis is x .

Using the same values for N , M , and x , create a picture of the Julia set for -0.391 0.587 . Print out this picture and hand it in with yourMATLAB code.

Try assigning different color values to Jmap. For example, let Jmap indicate the first iteration when the magnitudeexceeds M . Tip: try imagesc(log(Jmap)) and colormap jet for a neat picture.

Questions & Answers

how did you get 1640
Noor Reply
If auger is pair are the roots of equation x2+5x-3=0
Peter Reply
Wayne and Dennis like to ride the bike path from Riverside Park to the beach. Dennis’s speed is seven miles per hour faster than Wayne’s speed, so it takes Wayne 2 hours to ride to the beach while it takes Dennis 1.5 hours for the ride. Find the speed of both bikers.
MATTHEW Reply
420
Sharon
from theory: distance [miles] = speed [mph] × time [hours] info #1 speed_Dennis × 1.5 = speed_Wayne × 2 => speed_Wayne = 0.75 × speed_Dennis (i) info #2 speed_Dennis = speed_Wayne + 7 [mph] (ii) use (i) in (ii) => [...] speed_Dennis = 28 mph speed_Wayne = 21 mph
George
Let W be Wayne's speed in miles per hour and D be Dennis's speed in miles per hour. We know that W + 7 = D and W * 2 = D * 1.5. Substituting the first equation into the second: W * 2 = (W + 7) * 1.5 W * 2 = W * 1.5 + 7 * 1.5 0.5 * W = 7 * 1.5 W = 7 * 3 or 21 W is 21 D = W + 7 D = 21 + 7 D = 28
Salma
Devon is 32 32​​ years older than his son, Milan. The sum of both their ages is 54 54​. Using the variables d d​ and m m​ to represent the ages of Devon and Milan, respectively, write a system of equations to describe this situation. Enter the equations below, separated by a comma.
Aaron Reply
find product (-6m+6) ( 3m²+4m-3)
SIMRAN Reply
-42m²+60m-18
Salma
what is the solution
bill
how did you arrive at this answer?
bill
-24m+3+3mÁ^2
Susan
i really want to learn
Amira
I only got 42 the rest i don't know how to solve it. Please i need help from anyone to help me improve my solving mathematics please
Amira
Hw did u arrive to this answer.
Aphelele
hi
Bajemah
-6m(3mA²+4m-3)+6(3mA²+4m-3) =-18m²A²-24m²+18m+18mA²+24m-18 Rearrange like items -18m²A²-24m²+42m+18A²-18
Salma
complete the table of valuesfor each given equatio then graph. 1.x+2y=3
Jovelyn Reply
x=3-2y
Salma
y=x+3/2
Salma
Hi
Enock
given that (7x-5):(2+4x)=8:7find the value of x
Nandala
3x-12y=18
Kelvin
please why isn't that the 0is in ten thousand place
Grace Reply
please why is it that the 0is in the place of ten thousand
Grace
Send the example to me here and let me see
Stephen
A meditation garden is in the shape of a right triangle, with one leg 7 feet. The length of the hypotenuse is one more than the length of one of the other legs. Find the lengths of the hypotenuse and the other leg
Marry Reply
how far
Abubakar
cool u
Enock
state in which quadrant or on which axis each of the following angles given measure. in standard position would lie 89°
Abegail Reply
hello
BenJay
hi
Method
I am eliacin, I need your help in maths
Rood
how can I help
Sir
hmm can we speak here?
Amoon
however, may I ask you some questions about Algarba?
Amoon
hi
Enock
what the last part of the problem mean?
Roger
The Jones family took a 15 mile canoe ride down the Indian River in three hours. After lunch, the return trip back up the river took five hours. Find the rate, in mph, of the canoe in still water and the rate of the current.
cameron Reply
Shakir works at a computer store. His weekly pay will be either a fixed amount, $925, or $500 plus 12% of his total sales. How much should his total sales be for his variable pay option to exceed the fixed amount of $925.
mahnoor Reply
I'm guessing, but it's somewhere around $4335.00 I think
Lewis
12% of sales will need to exceed 925 - 500, or 425 to exceed fixed amount option. What amount of sales does that equal? 425 ÷ (12÷100) = 3541.67. So the answer is sales greater than 3541.67. Check: Sales = 3542 Commission 12%=425.04 Pay = 500 + 425.04 = 925.04. 925.04 > 925.00
Munster
difference between rational and irrational numbers
Arundhati Reply
When traveling to Great Britain, Bethany exchanged $602 US dollars into £515 British pounds. How many pounds did she receive for each US dollar?
Jakoiya Reply
how to reduced echelon form
Solomon Reply
Jazmine trained for 3 hours on Saturday. She ran 8 miles and then biked 24 miles. Her biking speed is 4 mph faster than her running speed. What is her running speed?
Zack Reply
d=r×t the equation would be 8/r+24/r+4=3 worked out
Sheirtina
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Señales y sistemas. OpenStax CNX. Sep 28, 2006 Download for free at http://cnx.org/content/col10373/1.2
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Señales y sistemas' conversation and receive update notifications?

Ask