Before you turn this problem in, make sure everything runs as expected. First, restart the kernel (in the menubar, select Kernel\(\rightarrow\)Restart) and then run all cells (in the menubar, select Cell\(\rightarrow\)Run All).

Make sure you fill in any place that says YOUR CODE HERE or “YOUR ANSWER HERE”, as well as your name and collaborators below:

NAME = ""
COLLABORATORS = ""

Introduction assignment#

Insert a Markdown cell below this. In it do these things:

  1. tell me something about yourself,

  2. and put a photograph of yourself in it.

There are two ways to do that, one is to copy an image (e.g. from a screenshot, or right click on an image and copy it), and then paste it in to a Markdown cell. The second way is to drag an image into this folder, say it is called headshot.png, then use a syntax like this (but without the four leading spaces).

![Some description](./headshot.png)

Part 2#

Tell me about your experience with using programming to solve engineering problems.

Python cells#

Fix this code so it prints exactly “Hello World.”

a = "hello world"
print a

Define a function#

Define a function that implements \(f(x) = e^{-0.5 x} \sin(x)\). Show that it works with a single number, and an array of numbers.

Make a plot#

Using the function above, plot it from x=0 to x=\(6\pi\). Make sure to include axis labels.

When you are done, download a PDF and turn it in on Canvas. I recommend you use:

File -> Save and Export Notebook As... -> Webpdf