Designing Information Devices and Systems II Spring 2017 Murat Arcak and Michel Maharbiz Homework 9

Size: px
Start display at page:

Download "Designing Information Devices and Systems II Spring 2017 Murat Arcak and Michel Maharbiz Homework 9"

Transcription

1 EECS 16B Designing Information Devices and Systems II Spring 2017 Murat Arcak and Michel Maharbiz Homework 9 This homework is due April 5, 2017, at 17: Midterm 2 - Question 1 Redo the midterm! 2. Midterm 2 - Question 2 Redo the midterm! 3. Midterm 2 - Question 3 Redo the midterm! 4. Midterm 2 - Question 4 Redo the midterm! 5. Midterm 2 - Question 5 Redo the midterm! 6. Midterm 2 - Question 6 Redo the midterm! 7. Midterm 2 - Question 7 Redo the midterm! 8. The Moore-Penrose pseudoinverse for fat matrices Say we have a set of linear equations described as A x = y. If A is invertible, we know that the solution is x = A 1 y. However, what if A is not a square matrix? In 16A, you saw how this problem could be approached for tall matrices A where it really wasn t possible to find a solution that exactly matches all the measurements. The Linear Least-Squares solution gives us a reasonable answer that asks for the best match in terms of reducing the norm of the error vector. This problem deals with the other case when the matrix A is short and fat. In this case, there are generally going to be lots of possible solutions so which should we choose? Why? We will walk you through the Moore-Penrose Pseudoinverse that generalizes the idea of the matrix inverse and is derived from the singular value decomposition. (a) Say you have the following matrix. [ ] A = Calculate the SVD decomposition of A. That is to say, calculate U,Σ,V such that, A = UΣV T EECS 16B, Spring 2017, Homework 9 1

2 What are the dimensions of U,Σ and V? Note. Do NOT use a computer to calculate the SVD. You may be asked to solve similar questions on your own in the exam. (b) Let us think about what the SVD does. Let us look at matrix A acting on some vector x to give the result y. We have, A x = UΣV T x = y Observe that V T x rotates the vector, Σ scales it and U rotates it again. We will try to "reverse" these operations one at a time and then put them together. If U rotates the vector ( ΣV T ) x, what operator can we derive that will undo the rotation? (c) Derive an matrix that will "unscale", or undo the effect of Σ where it is possible to undo. Recall that Σ has the same dimensions as A. Ignore any division by zeros (that is to say, let it stay zero). (d) Derive an operator that would "unrotate" by V T. (e) Try to use this idea of "unrotating" and "unscaling" to derive an "inverse" (which we will use A to denote). That is to say, x = A y The reason why the word inverse is in quotes (or why this is called a pseudo-inverse) is because we re ignoring the "divisions" by zero. (f) Use A to solve for x in the following systems of equations. [ ] [ ] x = (g) (Optional) Now we will see why this matrix is a useful proxy for the matrix inverse in such circumstances. Show that the solution given by the Moore-Penrose Psuedoinverse satisfies the minimality property that if ˆx is the psuedo-inverse solution to A x = y, then ˆx z for all other vectors z satisfying A z = y. (Hint: look at the vectors involved in the V basis. Think about the relevant nullspace and how it is connected to all this.) This minimality property is useful in both control applications (as you will see in the next problem) and in communications applications. 9. SVD for minimum energy control Given a practical discrete linear system model x(t + 1) = A x(t). Consider applying open loop control x(t + 1) = A x(t) + Bu(t) to the system to drive it from some initial state x 0 to x f. (for simplicity we considered scaler u(t), but the conclusion of this problem can be readily extended to vector inputs). We know that if A,B are controllable and the dimension is n, then clearly we can get to the desired x f in n steps. However, suppose that we only need to get there by m > n steps. We now have a lot of flexibility. Among all controls that guarantees reachability, we could ask for a control that gets us to the desired x f using minimal energy. i.e., having minimal m 1 u(t) 2. t=0 EECS 16B, Spring 2017, Homework 9 2

3 A concrete example such that m 1 t=0 u(t) 2 can be the energy of the control inputs is if the input is a voltage, where voltage 2 is power. (a) Consider the system evolution equations from t = 1 to t = m, obtain an expression of x(m) as a function of the initial state x 0 and control inputs. (b) Write out the above equation in a matrix form, with u = [u(0),u(1),,u(m 1)] T. (c) Now you have obtained a linear equation in the form y = C u, where y and C contains your results from last question. Recall that in the previous problem, you have shown that the solution obtained by psuedo-inverse (using the SVD) has a nice minimality property. Use this to derive the minimum energy control inputs u. 10. Recommendation system On Saavan s recommendation, the EE16B TAs hang out all the time outside of work. Every Friday night, we watch movies on Netflix and we have been collecting ratings for all the movies we ve watched. A sample of this data set is shown below, and gives star ratings (between 1 and 5 stars) for each of the movies we ve watched. These data are saved in the file data_tas.csv. Professors Maharbiz and Arcak sometimes crash movie night, and when they do we also collect their ratings. These data are saved in data_arcak.json and data_maharbiz.json. In this problem, we will use the SVD to build a system that will predict ratings for unrated movies based on a small sample of rated movies. This will allow us to make customized movie recommendations for the professors, like Netflix does for its viewers. Use the ipython notebook Recommender_System.ipynb. Note that the first cell loads in the TAs ratings for you already. 11. Brain-machine interface The ipython notebook pca_brain_machine_interface.ipynb will guide you through the process of analyzing brain machine interface data using principle component analysis (PCA). This will help you to prepare for the project, where you will need to use PCA as part of a classifier that will allow you to use voice or music inputs to control your car. Please complete the notebook by following the instructions given. EECS 16B, Spring 2017, Homework 9 3

4 EE 16B Midterm 2, March 21, 2017 Name: SID #: Discussion Section and TA: Lab Section and TA: Name of left neighbor: Name of right neighbor: Important Instructions: Show your work. An answer without explanation is not acceptable and does not guarantee any credit. Only the front pages will be scanned and graded. You can use the back pages as scratch paper. Do not remove pages, as this disrupts the scanning. Instead, cross the parts that you don t want us to grade. Problem Points Total 100 1

5 1. (10 points) The thirteenth century Italian mathematician Fibonacci described the growth of a rabbit population by the recurrence relation: y(t + 2) = y(t + 1) + y(t) where y(t) denotes the number of rabbits at month t. A sequence generated by this relation from initial values y(0), y(1) is known as a Fibonacci sequence. a) (5 points) Bring the recurrence relation above to the state space form using the variables x 1 (t) = y(t) and x 2 (t) = y(t + 1). 2

6 b) (5 points) Determine the stability of this system. 3

7 2. (15 points) Consider the circuit below that consists of a capacitor, an inductor, and a third element with the nonlinear voltage-current characteristic: i = v + v 3. i L i + + v C C L v a) (5 points) Write a state space model of the form dx 1 (t) = f 1 (x 1 (t), x 2 (t)) dt dx 2 (t) = f 2 (x 1 (t), x 2 (t)) dt using the states x 1 (t) = v C (t) and x 2 (t) = i L (t). f 1 (x 1, x 2 ) = f 2 (x 1, x 2 ) = 4

8 b) (5 points) Linearize the state model at the equilibrium x 1 = x 2 = 0 and specify the resulting A matrix. 5

9 c) (5 points) Determine stability based on the linearization. 6

10 3. (10 points) Consider the discrete-time system x(t + 1) = A x(t) + Bu(t) where A = B = a) (5 points) Determine if the system is controllable. 7

11 b) (5 points) Explain whether or not it is possible to move the state vector from x(0) = 0 to 2 x(t ) = 1. 0 If your answer is yes, specify the smallest possible time T and an input sequence u(0),..., u(t 1) to accomplish this task. 8

12 4. (20 points) Consider the system [ cos θ sin θ x(t + 1) = sin θ cos θ where θ is a constant. ] x(t) + [ ] 0 u(t) 1 a) (5 points) For which values of θ is the system controllable? b) (10 points) Select the coefficients k 1, k 2 of the state feedback controller u(t) = k 1 x 1 (t) + k 2 x 2 (t) such that the closed-loop eigenvalues are λ 1 = λ 2 = 0. Your answer should be symbolic and well-defined for the values of θ you specified in part (a). 9

13 Additional workspace for Problem 4b. 10

14 c) (5 points) Suppose the state variable x 1 (t) evolves as depicted below when no control is applied (u = 0). What is the value of θ? x 1 (t) 0 t

15 5. (15 points) Consider the inverted pendulum below, where p(t) is the position of the cart, θ(t) is the angle of the pendulum, and u(t) is the input force. θ m u M p When linearized about the upright position, the equations of motion are p(t) = m M g θ(t) + 1 M u(t) where M, m, l, g are positive constants. θ(t) = M + m g θ(t) 1 (1) Ml Ml u(t) a) (5 points) Using (1) write the state model for the vector x(t) = [ p(t) ṗ(t) θ(t) θ(t) ] T. 12

16 b) (5 points) Suppose we measure only the position; that is, the output is y(t) = x 1 (t). Determine if the system is observable with this output. 13

17 c) (5 points) Suppose we measure only the angle; that is, the output is y(t) = x 3 (t). Determine if the system is observable with this output. 14

18 6. (15 points) Consider the system x 1 (t + 1) x 1 (t) x 2 (t + 1) = x 2 (t), y(t) = [ ] x 1 (t) x 2 (t). x 3 (t + 1) x 3 (t) }{{} x }{{} C 3 (t) A a) (5 points) Select values for l 1, l 2, l 3 in the observer below such that ˆx 1 (t), ˆx 2 (t), ˆx 3 (t) converge to the true state variables x 1 (t), x 2 (t), x 3 (t) respectively. ˆx 1 (t + 1) ˆx 1 (t) l 1 ˆx 2 (t + 1) = ˆx 2 (t) + l 2 (ˆx 2 (t) y(t)). ˆx 3 (t + 1) ˆx 3 (t) l 3 }{{} L 15

19 Additional workspace for Problem 6a. 16

20 b) (5 points) Professor Arcak found a solution to part (a) that guarantees convergence of ˆx 3 (t) to x 3 (t) in one time step; that is ˆx 3 (t) = x 3 (t) t = 1, 2, 3,... for any initial x(0) and ˆx(0). Determine his l 3 value based on this behavior of the observer. Explain your reasoning. 17

21 c) (5 points) When Professor Arcak solved part (a), he found the convergence of ˆx 1 (t) to x 1 (t) to be rather slow no matter what L he chose. Explain the reason why no choice of L can change the convergence rate of ˆx 1 (t) to x 1 (t). 18

22 7. (15 points) Consider a system with the symmetric form [ ] [ ] [ ] [ ] d x1 (t) F H x1 (t) G = + u(t), (2) dt x 2 (t) H F x 2 (t) G where x 1 and x 2 have identical dimensions and, therefore, F and H are square matrices. a) (5 points) Define the new variables z 1 = x 1 + x 2 and z 2 = x 1 x 2, and write a state model with respect to these variables: [ ] [ ] d z1 (t) = z1 (t) dt z 2 (t) + z 2 (t) u(t). 19

23 b) (5 points) Show that the system (2) is not controllable. 20

24 c) (5 points) Write a state model for the circuit below using the inductor currents as the variables. Show that the model has the symmetric form (2). u x 1 x 2 L L R 21

25 22

26 Contributors: Siddharth Iyer. Ioannis Konstantakopoulos. John Maidens. EECS 16B, Spring 2017, Homework 9 26

EE 16B Midterm 2, March 21, Name: SID #: Discussion Section and TA: Lab Section and TA: Name of left neighbor: Name of right neighbor:

EE 16B Midterm 2, March 21, Name: SID #: Discussion Section and TA: Lab Section and TA: Name of left neighbor: Name of right neighbor: EE 16B Midterm 2, March 21, 2017 Name: SID #: Discussion Section and TA: Lab Section and TA: Name of left neighbor: Name of right neighbor: Important Instructions: Show your work. An answer without explanation

More information

EE 16B Final, December 13, Name: SID #:

EE 16B Final, December 13, Name: SID #: EE 16B Final, December 13, 2016 Name: SID #: Important Instructions: Show your work. An answer without explanation is not acceptable and does not guarantee any credit. Only the front pages will be scanned

More information

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Homework 5

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Homework 5 EECS 16B Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Homework 5 This homework is due on Thursday, March 8, 2018, at 11:59AM (NOON). Self-grades are due on Monday,

More information

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Homework 7

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Homework 7 EECS 6B Designing Information Devices and Systems II Spring 28 J. Roychowdhury and M. Maharbiz Homework 7 This homework is due on Thursday, March 22, 28, at :59AM (NOON). Self-grades are due on Monday,

More information

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 9

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 9 EECS 16B Designing Information Devices and Systems II Fall 18 Elad Alon and Miki Lustig Homework 9 This homework is due Wednesday, October 31, 18, at 11:59pm. Self grades are due Monday, November 5, 18,

More information

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Discussion 6B

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Discussion 6B EECS 16B Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Discussion 6B 1 Stability 1.1 Discrete time systems A discrete time system is of the form: xt + 1 A xt

More information

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 1. Exam location: 1 Pimentel (Odd SID + 61C)

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 1. Exam location: 1 Pimentel (Odd SID + 61C) EECS 16B Designing Information Devices and Systems II Spring 16 Anant Sahai and Michel Maharbiz Midterm 1 Exam location: 1 Pimentel (Odd SID + 61C) PRINT your student ID: PRINT AND SIGN your name:, (last)

More information

Designing Information Devices and Systems I Fall 2017 Homework 3

Designing Information Devices and Systems I Fall 2017 Homework 3 EECS 6A Designing Information Devices and Systems I Fall 07 Homework 3 This homework is due September 8, 07, at 3:9. Self-grades are due September, 07, at 3:9. Submission Format Your homework submission

More information

Designing Information Devices and Systems II Spring 2017 Murat Arcak and Michel Maharbiz Homework 10

Designing Information Devices and Systems II Spring 2017 Murat Arcak and Michel Maharbiz Homework 10 EECS 16B Designing Information Devices and Systems II Spring 2017 Murat Arcak and Michel Maharbiz Homework 10 This homework is due April 12, 2017, at 17:00. 1. MIMO wireless signals Ever wonder why newer

More information

EE16B Fa 17, Michael Maharbitz and Miki Lustig. Miterm Exam#2. (after the exam begins, add your SID# in the top right corner of each page)

EE16B Fa 17, Michael Maharbitz and Miki Lustig. Miterm Exam#2. (after the exam begins, add your SID# in the top right corner of each page) Miterm Exam#2 Name (after the exam begins add your SID# in the top right corner of each page) Discussion Section and TA Discussion Section and TA Lab Section and TA Name of left neighbor Name of right

More information

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 2

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 2 EECS 16B Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 2 Exam location: 145 Dwinelle (SIDs ending in 1 and 5) PRINT your student ID: PRINT AND SIGN your

More information

Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 11. This homework is due November 14, 2016, at Noon.

Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 11. This homework is due November 14, 2016, at Noon. EECS 16B Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 11 This homework is due November 14, 2016, at Noon. 1. Homework process and study group (a) Who

More information

Designing Information Devices and Systems I Spring 2018 Homework 13

Designing Information Devices and Systems I Spring 2018 Homework 13 EECS 16A Designing Information Devices and Systems I Spring 2018 Homework 13 This homework is due April 30, 2018, at 23:59. Self-grades are due May 3, 2018, at 23:59. Submission Format Your homework submission

More information

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 6

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 6 EECS 16A Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 6 This homework is due March 6, 2017, at 23:59. Self-grades are due March 9, 2017, at 23:59.

More information

Designing Information Devices and Systems I Spring 2019 Homework 11

Designing Information Devices and Systems I Spring 2019 Homework 11 Last Updated: 2019-04-12 23:38 1 EECS 16A Designing Information Devices and Systems I Spring 2019 Homework 11 This homework is due April 19, 2019, at 23:59. Self-grades are due April 23, 2019, at 23:59.

More information

ECE 275A Homework # 3 Due Thursday 10/27/2016

ECE 275A Homework # 3 Due Thursday 10/27/2016 ECE 275A Homework # 3 Due Thursday 10/27/2016 Reading: In addition to the lecture material presented in class, students are to read and study the following: A. The material in Section 4.11 of Moon & Stirling

More information

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Homework 5. This homework is due February 29, 2016, at Noon.

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Homework 5. This homework is due February 29, 2016, at Noon. EECS 16 Designing Information Devices and Systems II Spring 2016 nant Sahai and Michel Maharbiz Homework 5 This homework is due February 29, 2016, at Noon. 1. Homework process and study group Who else

More information

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 7

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 7 EECS 16B Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 7 This homework is due on October 17, 2018 at 11:59pm Self grades are due on October 22, 2018 at 11:59pm

More information

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 1

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 1 EECS 6B Designing Information Devices and Systems II Spring 6 Anant Sahai and Michel Maharbiz Midterm Exam location: The Faery Land Of Unicorns and Rainbows PRINT your student ID: PRINT AND SIGN your name:,

More information

CALIFORNIA INSTITUTE OF TECHNOLOGY Control and Dynamical Systems

CALIFORNIA INSTITUTE OF TECHNOLOGY Control and Dynamical Systems CDS 101 1. For each of the following linear systems, determine whether the origin is asymptotically stable and, if so, plot the step response and frequency response for the system. If there are multiple

More information

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 1

Designing Information Devices and Systems II Spring 2016 Anant Sahai and Michel Maharbiz Midterm 1 EECS 6B Designing Information Devices and Systems II Spring 6 Anant Sahai and Michel Maharbiz Midterm Exam location: The Faery Land Of Unicorns and Rainbows PRINT your student ID: PRINT AND SIGN your name:,

More information

Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 0. This homework is due August 29th, 2016, at Noon.

Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 0. This homework is due August 29th, 2016, at Noon. EECS 16B Designing Information Devices and Systems II Fall 2016 Murat Arcak and Michel Maharbiz Homework 0 This homework is due August 29th, 2016, at Noon. 1. Homework process and study group (a) Who else

More information

Designing Information Devices and Systems II Fall 2017 Miki Lustig and Michel Maharbiz Homework 1. This homework is due September 5, 2017, at 11:59AM.

Designing Information Devices and Systems II Fall 2017 Miki Lustig and Michel Maharbiz Homework 1. This homework is due September 5, 2017, at 11:59AM. EECS 16 Designing Information Devices and Systems II Fall 017 Miki Lustig and Michel Maharbiz Homework 1 This homework is due September 5, 017, at 11:59M. 1. Fundamental Theorem of Solutions to Differential

More information

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 8

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 8 EECS 6B Designing Information Devices and Systems II Fall 28 Elad Alon and Miki Lustig Homework 8 his homework is due on Wednesday, October 24, 28, at :59PM. Self-grades are due on Monday, October 29,

More information

Designing Information Devices and Systems I Spring 2018 Homework 11

Designing Information Devices and Systems I Spring 2018 Homework 11 EECS 6A Designing Information Devices and Systems I Spring 28 Homework This homework is due April 8, 28, at 23:59. Self-grades are due April 2, 28, at 23:59. Submission Format Your homework submission

More information

3 Gramians and Balanced Realizations

3 Gramians and Balanced Realizations 3 Gramians and Balanced Realizations In this lecture, we use an optimization approach to find suitable realizations for truncation and singular perturbation of G. It turns out that the recommended realizations

More information

Assignments VIII and IX, PHYS 301 (Classical Mechanics) Spring 2014 Due 3/21/14 at start of class

Assignments VIII and IX, PHYS 301 (Classical Mechanics) Spring 2014 Due 3/21/14 at start of class Assignments VIII and IX, PHYS 301 (Classical Mechanics) Spring 2014 Due 3/21/14 at start of class Homeworks VIII and IX both center on Lagrangian mechanics and involve many of the same skills. Therefore,

More information

Designing Information Devices and Systems I Spring 2016 Official Lecture Notes Note 21

Designing Information Devices and Systems I Spring 2016 Official Lecture Notes Note 21 EECS 6A Designing Information Devices and Systems I Spring 26 Official Lecture Notes Note 2 Introduction In this lecture note, we will introduce the last topics of this semester, change of basis and diagonalization.

More information

EE16B, Spring 2018 UC Berkeley EECS. Maharbiz and Roychowdhury. Lecture 5B: Open QA Session

EE16B, Spring 2018 UC Berkeley EECS. Maharbiz and Roychowdhury. Lecture 5B: Open QA Session EE16B, Spring 2018 UC Berkeley EECS Maharbiz and Roychowdhury Lecture 5B: Open QA Session EE16B, Spring 2018, Open Q/A Session (Roychowdhury) Slide 1 Today: Open Q/A Session primarily on state space r.

More information

Designing Information Devices and Systems I Spring 2016 Elad Alon, Babak Ayazifar Homework 11

Designing Information Devices and Systems I Spring 2016 Elad Alon, Babak Ayazifar Homework 11 EECS 6A Designing Information Devices and Systems I Spring 206 Elad Alon, Babak Ayazifar Homework This homework is due April 9, 206, at Noon.. Homework process and study group Who else did you work with

More information

EECS C128/ ME C134 Final Wed. Dec. 15, am. Closed book. Two pages of formula sheets. No calculators.

EECS C128/ ME C134 Final Wed. Dec. 15, am. Closed book. Two pages of formula sheets. No calculators. Name: SID: EECS C28/ ME C34 Final Wed. Dec. 5, 2 8- am Closed book. Two pages of formula sheets. No calculators. There are 8 problems worth points total. Problem Points Score 2 2 6 3 4 4 5 6 6 7 8 2 Total

More information

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Midterm 1

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Midterm 1 EECS 16A Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Midterm 1 Exam location: 2050 VLSB, Last Name: Surpenant-Zzz PRINT your student ID: PRINT AND SIGN your

More information

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 10

Designing Information Devices and Systems I Spring 2019 Lecture Notes Note 10 EECS 6A Designing Information Devices and Systems I Spring 209 Lecture Notes Note 0 0. Change of Basis for Vectors Previously, we have seen that matrices can be interpreted as linear transformations between

More information

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 4

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 4 EECS 16A Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework This homework is due February 22, 2017, at 2:59. Self-grades are due February 27, 2017, at

More information

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Final Exam. Exam location: RSF Fieldhouse, Back Left, last SID 6, 8, 9

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Final Exam. Exam location: RSF Fieldhouse, Back Left, last SID 6, 8, 9 EECS 16A Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Final Exam Exam location: RSF Fieldhouse, Back Left, last SID 6, 8, 9 PRINT your student ID: PRINT AND SIGN your

More information

EE16B, Spring 2018 UC Berkeley EECS. Maharbiz and Roychowdhury. Lectures 4B & 5A: Overview Slides. Linearization and Stability

EE16B, Spring 2018 UC Berkeley EECS. Maharbiz and Roychowdhury. Lectures 4B & 5A: Overview Slides. Linearization and Stability EE16B, Spring 2018 UC Berkeley EECS Maharbiz and Roychowdhury Lectures 4B & 5A: Overview Slides Linearization and Stability Slide 1 Linearization Approximate a nonlinear system by a linear one (unless

More information

- - - - - - - - - - - - - - - - - - DISCLAIMER - - - - - - - - - - - - - - - - - - General Information: This midterm is a sample midterm. This means: The sample midterm contains problems that are of similar,

More information

Analog Signals and Systems and their properties

Analog Signals and Systems and their properties Analog Signals and Systems and their properties Main Course Objective: Recall course objectives Understand the fundamentals of systems/signals interaction (know how systems can transform or filter signals)

More information

COMP 558 lecture 18 Nov. 15, 2010

COMP 558 lecture 18 Nov. 15, 2010 Least squares We have seen several least squares problems thus far, and we will see more in the upcoming lectures. For this reason it is good to have a more general picture of these problems and how to

More information

Your Comments. Seems interesting, but my mind is on the test right now.

Your Comments. Seems interesting, but my mind is on the test right now. Your omments Pretty straightforward! The analogy to spring motion really helped. Is there any false comparison with it that we should watch out for? I think I got a lot of this, the pre-lecture confused

More information

Lecture 10: Powers of Matrices, Difference Equations

Lecture 10: Powers of Matrices, Difference Equations Lecture 10: Powers of Matrices, Difference Equations Difference Equations A difference equation, also sometimes called a recurrence equation is an equation that defines a sequence recursively, i.e. each

More information

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67

ECEN 420 LINEAR CONTROL SYSTEMS. Lecture 6 Mathematical Representation of Physical Systems II 1/67 1/67 ECEN 420 LINEAR CONTROL SYSTEMS Lecture 6 Mathematical Representation of Physical Systems II State Variable Models for Dynamic Systems u 1 u 2 u ṙ. Internal Variables x 1, x 2 x n y 1 y 2. y m Figure

More information

MIT Final Exam Solutions, Spring 2017

MIT Final Exam Solutions, Spring 2017 MIT 8.6 Final Exam Solutions, Spring 7 Problem : For some real matrix A, the following vectors form a basis for its column space and null space: C(A) = span,, N(A) = span,,. (a) What is the size m n of

More information

8 The SVD Applied to Signal and Image Deblurring

8 The SVD Applied to Signal and Image Deblurring 8 The SVD Applied to Signal and Image Deblurring We will discuss the restoration of one-dimensional signals and two-dimensional gray-scale images that have been contaminated by blur and noise. After an

More information

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization

Review: control, feedback, etc. Today s topic: state-space models of systems; linearization Plan of the Lecture Review: control, feedback, etc Today s topic: state-space models of systems; linearization Goal: a general framework that encompasses all examples of interest Once we have mastered

More information

EE16B Designing Information Devices and Systems II

EE16B Designing Information Devices and Systems II EE6B M. Lustig, EECS UC Berkeley EE6B Designing Information Devices and Systems II Lecture 6B Cont. stability of Linear State Models Controllability Today Last time: Derived stability conditions for disc.

More information

ECEEN 5448 Fall 2011 Homework #4 Solutions

ECEEN 5448 Fall 2011 Homework #4 Solutions ECEEN 5448 Fall 2 Homework #4 Solutions Professor David G. Meyer Novemeber 29, 2. The state-space realization is A = [ [ ; b = ; c = [ which describes, of course, a free mass (in normalized units) with

More information

Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Homework 5

Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Homework 5 EECS 16A Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Homework 5 This homework is due on Sunday, July 23, 2017, at 23:59. Self-grades are due on Monday, July

More information

Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Final Exam

Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Final Exam EECS 16A Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Final Exam Exam location: 1 Pimental, Last Name: A-Ketsamanian PRINT your student ID: PRINT AND SIGN your

More information

Name. University of Maryland Department of Physics

Name. University of Maryland Department of Physics Name University of Maryland Department of Physics Exam 1 (Makeup) 11. March. 2010 Instructions: Do not open this examination until the proctor tells you to begin. 1. When the proctor tells you to begin,

More information

Designing Information Devices and Systems I Discussion 2A

Designing Information Devices and Systems I Discussion 2A EECS 16A Spring 218 Designing Information Devices and Systems I Discussion 2A 1. Visualizing Matrices as Operations This problem is going to help you visualize matrices as operations. For example, when

More information

Question: Total. Points:

Question: Total. Points: MATH 308 May 23, 2011 Final Exam Name: ID: Question: 1 2 3 4 5 6 7 8 9 Total Points: 0 20 20 20 20 20 20 20 20 160 Score: There are 9 problems on 9 pages in this exam (not counting the cover sheet). Make

More information

Designing Information Devices and Systems I Spring 2019 Homework 7

Designing Information Devices and Systems I Spring 2019 Homework 7 Last Updated: 2019-03-16 22:56 1 EECS 16A Designing Information Devices and Systems I Spring 2019 Homework 7 This homework is due March 15, 2019 at 23:59. Self-grades are due March 19, 2019, at 23:59.

More information

Lab 6d: Self-Erecting Inverted Pendulum (SEIP)

Lab 6d: Self-Erecting Inverted Pendulum (SEIP) Lab 6d: Self-Erecting Inverted Pendulum (SEIP) Arthur Schopen- Life swings like a pendulum backward and forward between pain and boredom. hauer 1 Objectives The goal of this project is to design a controller

More information

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM. COURSE: ECE 3084A (Prof. Michaels)

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM. COURSE: ECE 3084A (Prof. Michaels) GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM DATE: 30-Apr-14 COURSE: ECE 3084A (Prof. Michaels) NAME: STUDENT #: LAST, FIRST Write your name on the front page

More information

- - - - - - - - - - - - - - - - - - DISCLAIMER - - - - - - - - - - - - - - - - - - General Information: This is a midterm from a previous semester. This means: This midterm contains problems that are of

More information

ECE 275A Homework #3 Solutions

ECE 275A Homework #3 Solutions ECE 75A Homework #3 Solutions. Proof of (a). Obviously Ax = 0 y, Ax = 0 for all y. To show sufficiency, note that if y, Ax = 0 for all y, then it must certainly be true for the particular value of y =

More information

Math 310 Introduction to Ordinary Differential Equations Final Examination August 9, Instructor: John Stockie

Math 310 Introduction to Ordinary Differential Equations Final Examination August 9, Instructor: John Stockie Make sure this exam has 15 pages. Math 310 Introduction to Ordinary Differential Equations inal Examination August 9, 2006 Instructor: John Stockie Name: (Please Print) Student Number: Special Instructions

More information

6 The SVD Applied to Signal and Image Deblurring

6 The SVD Applied to Signal and Image Deblurring 6 The SVD Applied to Signal and Image Deblurring We will discuss the restoration of one-dimensional signals and two-dimensional gray-scale images that have been contaminated by blur and noise. After an

More information

Bindel, Fall 2009 Matrix Computations (CS 6210) Week 8: Friday, Oct 17

Bindel, Fall 2009 Matrix Computations (CS 6210) Week 8: Friday, Oct 17 Logistics Week 8: Friday, Oct 17 1. HW 3 errata: in Problem 1, I meant to say p i < i, not that p i is strictly ascending my apologies. You would want p i > i if you were simply forming the matrices and

More information

Midterm II Sample Problems

Midterm II Sample Problems EECS 16A Spring 2015 Designing Information Devices and Systems I Midterm II Sample Problems 1. Bio-Molecule Detector One application for electronics that has gained a lot of attention over the past several

More information

CHEMISTRY 107 General Chemistry for Engineering Students

CHEMISTRY 107 General Chemistry for Engineering Students CHEMISTRY 107 General Chemistry for Engineering Students Chemistry & Engineering Big stuff (objects, etc.) Materials Molecules Atoms Protons, Neutrons, Electrons Tinier stuff (particle physics) Dr. Larry

More information

CHEMISTRY 107 General Chemistry for Engineering Students

CHEMISTRY 107 General Chemistry for Engineering Students CHEMISTRY 107 General Chemistry for Engineering Students Chemistry & Engineering Big stuff (objects, etc.) Materials Molecules Atoms Protons, Neutrons, Electrons Tinier stuff (particle physics) Dr. Larry

More information

CHEMISTRY 107 General Chemistry for Engineering Students

CHEMISTRY 107 General Chemistry for Engineering Students CHEMISTRY 107 General Chemistry for Engineering Students Chemistry & Engineering Big stuff (objects, etc.) Materials Molecules Atoms Protons, Neutrons, Electrons Tinier stuff (particle physics) Dr. Larry

More information

8 The SVD Applied to Signal and Image Deblurring

8 The SVD Applied to Signal and Image Deblurring 8 The SVD Applied to Signal and Image Deblurring We will discuss the restoration of one-dimensional signals and two-dimensional gray-scale images that have been contaminated by blur and noise. After an

More information

Electrical Engineering Written PhD Qualifier Exam Spring 2014

Electrical Engineering Written PhD Qualifier Exam Spring 2014 Electrical Engineering Written PhD Qualifier Exam Spring 2014 Friday, February 7 th 2014 Please do not write your name on this page or any other page you submit with your work. Instead use the student

More information

Math Fall Final Exam

Math Fall Final Exam Math 104 - Fall 2008 - Final Exam Name: Student ID: Signature: Instructions: Print your name and student ID number, write your signature to indicate that you accept the honor code. During the test, you

More information

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2

EE 40: Introduction to Microelectronic Circuits Spring 2008: Midterm 2 EE 4: Introduction to Microelectronic Circuits Spring 8: Midterm Venkat Anantharam 3/9/8 Total Time Allotted : min Total Points:. This is a closed book exam. However, you are allowed to bring two pages

More information

Introduction to Controls

Introduction to Controls EE 474 Review Exam 1 Name Answer each of the questions. Show your work. Note were essay-type answers are requested. Answer with complete sentences. Incomplete sentences will count heavily against the grade.

More information

Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Homework 12

Designing Information Devices and Systems I Fall 2016 Babak Ayazifar, Vladimir Stojanovic Homework 12 EECS 6A Designing Information Devices and Systems I Fall 206 Babak Ayazifar, Vladimir Stojanovic Homework 2 This homework is due November 22, 206, at P.M. Recommended Reading: Gilbert Strang, Introduction

More information

Lab 6a: Pole Placement for the Inverted Pendulum

Lab 6a: Pole Placement for the Inverted Pendulum Lab 6a: Pole Placement for the Inverted Pendulum Idiot. Above her head was the only stable place in the cosmos, the only refuge from the damnation of the Panta Rei, and she guessed it was the Pendulum

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Electrical Engineering and Computer Science 6.262 Discrete Stochastic Processes Midterm Quiz April 6, 2010 There are 5 questions, each with several parts.

More information

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Homework 8. This homework is due October 26, 2015, at Noon.

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Homework 8. This homework is due October 26, 2015, at Noon. EECS 16A Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Homework 8 This homework is due October 26, 2015, at Noon. 1. Nodal Analysis Or Superposition? (a) Solve for the

More information

Math 110 (Fall 2018) Midterm II (Monday October 29, 12:10-1:00)

Math 110 (Fall 2018) Midterm II (Monday October 29, 12:10-1:00) Math 110 (Fall 2018) Midterm II (Monday October 29, 12:10-1:00) Name: SID: Please write clearly and legibly. Justify your answers. Partial credits may be given to Problems 2, 3, 4, and 5. The last sheet

More information

EE16B Designing Information Devices and Systems II

EE16B Designing Information Devices and Systems II EE16B Designing Information Devices and Systems II Lecture 5A Control- state space representation Announcements Last time: Bode plots Resonance systes and Q HW 4 extended to Friday No hw this week. Study

More information

CS 301. Lecture 18 Decidable languages. Stephen Checkoway. April 2, 2018

CS 301. Lecture 18 Decidable languages. Stephen Checkoway. April 2, 2018 CS 301 Lecture 18 Decidable languages Stephen Checkoway April 2, 2018 1 / 26 Decidable language Recall, a language A is decidable if there is some TM M that 1 recognizes A (i.e., L(M) = A), and 2 halts

More information

Designing Information Devices and Systems I Spring 2016 Elad Alon, Babak Ayazifar Midterm 2. Exam location: 145 Dwinelle, last SID# 2

Designing Information Devices and Systems I Spring 2016 Elad Alon, Babak Ayazifar Midterm 2. Exam location: 145 Dwinelle, last SID# 2 EECS 16A Designing Information Devices and Systems I Spring 2016 Elad Alon, Babak Ayazifar Midterm 2 Exam location: 145 Dwinelle, last SID# 2 PRINT your student ID: PRINT AND SIGN your name:, (last) (first)

More information

University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum

University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum University of Utah Electrical & Computer Engineering Department ECE 3510 Lab 9 Inverted Pendulum p1 ECE 3510 Lab 9, Inverted Pendulum M. Bodson, A. Stolp, 4/2/13 rev, 4/9/13 Objectives The objective of

More information

IV. Matrix Approximation using Least-Squares

IV. Matrix Approximation using Least-Squares IV. Matrix Approximation using Least-Squares The SVD and Matrix Approximation We begin with the following fundamental question. Let A be an M N matrix with rank R. What is the closest matrix to A that

More information

Multiple Choice Answers. MA 114 Calculus II Spring 2013 Final Exam 1 May Question

Multiple Choice Answers. MA 114 Calculus II Spring 2013 Final Exam 1 May Question MA 114 Calculus II Spring 2013 Final Exam 1 May 2013 Name: Section: Last 4 digits of student ID #: This exam has six multiple choice questions (six points each) and five free response questions with points

More information

Singular Value Decomposition

Singular Value Decomposition Chapter 6 Singular Value Decomposition In Chapter 5, we derived a number of algorithms for computing the eigenvalues and eigenvectors of matrices A R n n. Having developed this machinery, we complete our

More information

EE16B Designing Information Devices and Systems II

EE16B Designing Information Devices and Systems II EE16B Designing Information Devices and Systems II Lecture 6B Controllability Administration Lecture slides (Miki Lustig): Alpha version will be posted a few days before Beta version will be posted same

More information

State space control for the Two degrees of freedom Helicopter

State space control for the Two degrees of freedom Helicopter State space control for the Two degrees of freedom Helicopter AAE364L In this Lab we will use state space methods to design a controller to fly the two degrees of freedom helicopter. 1 The state space

More information

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Discussion 8A

Designing Information Devices and Systems II Spring 2018 J. Roychowdhury and M. Maharbiz Discussion 8A EECS 6B Designing Information Devices an Systems II Spring 28 J Roychowhury an M Maharbiz Discussion 8A Change of Basis Review Figure : Left: basis vectors x an y Right: basis vectors u an v T We can think

More information

Maths for Signals and Systems Linear Algebra in Engineering

Maths for Signals and Systems Linear Algebra in Engineering Maths for Signals and Systems Linear Algebra in Engineering Lectures 13 15, Tuesday 8 th and Friday 11 th November 016 DR TANIA STATHAKI READER (ASSOCIATE PROFFESOR) IN SIGNAL PROCESSING IMPERIAL COLLEGE

More information

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Midterm 1. Exam location: 60 Evans, last digit SID= 6

Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Midterm 1. Exam location: 60 Evans, last digit SID= 6 EECS 16A Designing Information Devices and Systems I Fall 2015 Anant Sahai, Ali Niknejad Midterm 1 Exam location: 60 Evans, last digit SID= 6 PRINT your student ID: PRINT AND SIGN your name:, (last) (first)

More information

EE263: Introduction to Linear Dynamical Systems Review Session 9

EE263: Introduction to Linear Dynamical Systems Review Session 9 EE63: Introduction to Linear Dynamical Systems Review Session 9 SVD continued EE63 RS9 1 Singular Value Decomposition recall any nonzero matrix A R m n, with Rank(A) = r, has an SVD given by A = UΣV T,

More information

Your exam contains 5 problems. The entire exam is worth 70 points. Your exam should contain 6 pages; please make sure you have a complete exam.

Your exam contains 5 problems. The entire exam is worth 70 points. Your exam should contain 6 pages; please make sure you have a complete exam. MATH 124 (PEZZOLI) WINTER 2017 MIDTERM #2 NAME TA:. Section: Instructions: Your exam contains 5 problems. The entire exam is worth 70 points. Your exam should contain 6 pages; please make sure you have

More information

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 12

Designing Information Devices and Systems II Fall 2018 Elad Alon and Miki Lustig Homework 12 EECS 1B Designing Information Devices and Systems II Fall 01 Elad Alon and Miki Lustig Homework 1 This homework is due on Friday, December 7 at 11:59 pm. Self grades are due on Monday, December 10 at 11:59

More information

Lab 3: Quanser Hardware and Proportional Control

Lab 3: Quanser Hardware and Proportional Control Lab 3: Quanser Hardware and Proportional Control The worst wheel of the cart makes the most noise. Benjamin Franklin 1 Objectives The goal of this lab is to: 1. familiarize you with Quanser s QuaRC tools

More information

EE16B - Spring 17 - Lecture 12A Notes 1

EE16B - Spring 17 - Lecture 12A Notes 1 EE6B - Spring 7 - Lecture 2A Notes Murat Arcak April 27 Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4. International License. Sampling and Discrete Time Signals Discrete-Time

More information

Name. University of Maryland Department of Physics

Name. University of Maryland Department of Physics Name University of Maryland Department of Physics 13. November. 2009 Instructions: Do not open this examination until the proctor tells you to begin. 1. When the proctor tells you to begin, write your

More information

Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Midterm 2. Exam Location: 100 Genetics & Plant Bio

Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Midterm 2. Exam Location: 100 Genetics & Plant Bio EECS 16A Designing Information Devices and Systems I Summer 2017 D. Aranki, F. Maksimovic, V. Swamy Midterm 2 Exam Location: 100 Genetics & Plant Bio PINT your student ID: PINT AND SIGN your name:, (last

More information

MA 226 FINAL EXAM. Show Your Work. Problem Possible Actual Score

MA 226 FINAL EXAM. Show Your Work. Problem Possible Actual Score Name: MA 226 FINAL EXAM Show Your Work Problem Possible Actual Score 1 36 2 8 3 8 4 8 5 8 6 8 7 8 8 8 9 8 TOTAL 100 1.) 30 points (3 each) Short Answer: The answers to these questions need only consist

More information

EE16B Designing Information Devices and Systems II

EE16B Designing Information Devices and Systems II EE6B Designing Information Devices and Systems II Lecture 9B Geometry of SVD, PCA Uniqueness of the SVD Find SVD of A 0 A 0 AA T 0 ) ) 0 0 ~u ~u 0 ~u ~u ~u ~u Uniqueness of the SVD Find SVD of A 0 A 0

More information

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 2

Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 2 EECS 16A Designing Information Devices and Systems I Spring 2017 Babak Ayazifar, Vladimir Stojanovic Homework 2 This homework is due February 6, 2017, at 23:59. Self-grades are due February 9, 2017, at

More information

Designing Information Devices and Systems I Fall 2018 Homework 5

Designing Information Devices and Systems I Fall 2018 Homework 5 Last Updated: 08-09-9 0:6 EECS 6A Designing Information Devices and Systems I Fall 08 Homework 5 This homework is due September 8, 08, at 3:59. Self-grades are due October, 08, at 3:59. Submission Format

More information

Lecture 4: Analysis of MIMO Systems

Lecture 4: Analysis of MIMO Systems Lecture 4: Analysis of MIMO Systems Norms The concept of norm will be extremely useful for evaluating signals and systems quantitatively during this course In the following, we will present vector norms

More information

6.003: Signals and Systems

6.003: Signals and Systems 6.003: Signals and Systems CT Feedback and Control October 20, 2011 1 Mid-term Examination #2 Wednesday, October 26, 7:30-9:30pm, No recitations on the day of the exam. Coverage: Lectures 1 12 Recitations

More information

dy dt = ty, y(0) = 3. (1)

dy dt = ty, y(0) = 3. (1) 2. (10pts) Solve the given intial value problem (IVP): dy dt = ty, y(0) = 3. (1) 3. (10pts) A plot of f(y) =y(1 y)(2 y) of the right hand side of the differential equation dy/dt = f(y) is shown below.

More information