Homework solution and worked example guidelines#

Homework solution#

Purpose#

The purpose of this task is to provide you with an opportunity to get more familiar with a topic covered in the course. While you may not have gotten the problem fully correct in your first attempt, but by taking a look at other approaches, and potentially see what are common errors or misunderstandings, you will be able to better understand the topic more deeply, and identify what the gap is in your understanding. Additionally, the ability to explain back and articulate the ideas back in written (or verbal) form will further solidify your understanding in the topic. While some things may seemingly “make sense in your head”, you may discover knowledge gaps when you try to explain it back to somone.

“If you can’t explain it simply, you don’t understand it well enough” – Albert Einstein

Instructions#

Create a Jupyter Notebook with a detailed solution based on the original homework notebook. Include all necessary steps, explanations, code, and comments. Ensure the notebook runs without errors. For any code, please make sure it is well commented.

If appropriate, please highlight common mistakes or errors you observed.

Submission#

The day after the homework submission deadline has passed, the TA will distribute the solutions to you.

Submission due date: Approximate 1 week after the homework is due. See course schedule for more details.

Submission instructions: Submit the jupyter notebook on Canvas.

Grading#

You will be graded based on on-time submission, and thoroughness of the solution.

Worked example#

Purpose#

The purpose is similar to the homework solution write-up described above. As we have limited time in the quarter, we cannot have a homework problem for every single topic mentioned in lectures, or have time to go through a detailed worked example. As such, to complement the homework and examples in class, the purpose of this component is to provide worked examples for the class. Such examples could include a worked example of a technique that is referenced in lectures, but not covered in depth, or taking an existing example and improving it by adding more details or variation on it.

Check out the CVXPY examples page for some examples.

Instructions#

You will sign up for one of the weeks. You are expected to be present in lectures during that week (and really pay attention in class!). From the content covered that week, you will select a topic or something that was referenced and create a worked example on it.

Create a Jupyter Notebook where you describe the problem (connecting it back to the lecture material), set up key equations and theory as needed. Provide relevant code corresponding to the problem set up and explain any relevant plots. Make sure to comment the code as appropriate.

You may find ipywidgets.interact a useful visualization tool where you can create interactive plots with sliders. See the code snippet below. Note: the plot should update as your move the slider, but this is not rendered properly in this textbook…

from ipywidgets import interact
import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(0, 2 * np.pi, 1000)
@interact(a=(0, 10, 0.1))
def plot(a=1):
    plt.figure(figsize=(5, 3))
    y = np.sin(a * x)
    plt.plot(x, y)
    plt.ylim(-1, 1)

Submission#

Submission due date: Due the Wednesday midnight after the assigned week. E.g., if assigned week 6, then the worked example is due Wednesday week 7.

Submission instructions: Submit the jupyter notebook on Canvas.

Grading#

You will be graded based on on-time submission, and thoroughness of the worked example.