Link to this document's Jupyter Notebook

In order to successfully complete this assignment, you must do the required reading, watch the provided videos, and complete all instructions. The embedded survey form must be entirely filled out and submitted on or before 11:59pm on the day before class. Students must come to class the next day prepared to discuss the material covered in this assignment.


Pre-Class Assignment: Inner Product

Goals for today's pre-class assignment

</p>

  1. Inner Products
  2. Inner Product on Functions
  3. Assignment wrap-up

1. Inner Products

Definition: An inner product on a vector space $V$ (Remember that $R^n$ is just one class of vector spaces) is a function that associates a number, denoted as $\langle u,v \rangle$, with each pair of vectors $u$ and $v$ of $V$. This function satisfies the following conditions for vectors $u, v, w$ and scalar $c$:

The dot product of $R^n$ is an inner product. Note that we can define new inner products for $R^n$.

Norm of a vector

Definition: Let $V$ be an inner product space. The norm of a vector $v$ is denoted by $\| v \|$ and is defined by:

$$\| v \| = \sqrt{\langle v,v \rangle}.$$

Angle between two vectors

Definition: Let $V$ be a real inner product space. The angle $\theta$ between two nonzero vectors $u$ and $v$ in $V$ is given by:

$$cos(\theta) = \frac{\langle u,v \rangle}{\| u \| \| v \|}.$$

Orthogonal vectors

Definition: Let $V$ be an inner product space. Two vectors $u$ and $v$ in $V$ are orthogonal if their inner product is zero:

$$\langle u,v \rangle = 0.$$

Distance

Definition: Let $V$ be an inner product space. The distance between two vectors (points) $u$ and $v$ in $V$ is denoted by $d(u,v)$ and is defined by:

$$d(u,v) = \| u-v \| = \sqrt{\langle u-v, u-v \rangle}$$

Example:

Let $R^2$ have an inner product defined by: $$\langle (x_1,x_2),(y_1,y_2)\rangle = 2x_1y_1 + 3x_2y_2.$$

**QUESTION 1:** What is the norm of (1,-2) in this space?

Put your answer to the above question here.

**QUESTION 2:** What is the distance between (1,-2) and (3,2) in this space?

Put your answer to the above question here.

**QUESTION 3:** What is the angle between (1,-2) and (3,2) in this space?

Put your answer to the above question here.

**QUESTION 4:** Determine if (1,-2) and (3,2) are orthogonal in this space?

Put your answer to the above question here.


2. Inner Product on Functions

Example

Consider the following functions

$$f(x)=3x-1$$$$g(x)=5x+3$$$$\text{with inner product defined by }\langle f,g\rangle=\int_0^1{f(x)g(x)dx}.$$

**QUESTION 5:** What is the norm of $f(x)$ in this space?

Put your answer to the above question here. (Hint: you can use sympy.integrate to compute the integral)

**QUESTION 6:** What is the norm of g(x) in this space?

Put your answer to the above question here.

**QUESTION 7:** What is the inner product of $f(x)$ and $g(x)$ in this space?

Put your answer to the above question here.


3. Assignment wrap-up

Please fill out the form that appears when you run the code below. You must completely fill this out in order to receive credit for the assignment!

Direct Link to Google Form

If you have trouble with the embedded form, please make sure you log on with your MSU google account at googleapps.msu.edu and then click on the direct link above.

**Assignment-Specific QUESTION:** There is no Assignment specific question for this notebook. You can just say "none".

Put your answer to the above question here

**QUESTION:** Summarize what you did in this assignment.

Put your answer to the above question here

**QUESTION:** What questions do you have, if any, about any of the topics discussed in this assignment after working through the jupyter notebook?

Put your answer to the above question here

**QUESTION:** How well do you feel this assignment helped you to achieve a better understanding of the above mentioned topic(s)?

Put your answer to the above question here

**QUESTION:** What was the most challenging part of this assignment for you?

Put your answer to the above question here

**QUESTION:** What was the least challenging part of this assignment for you?

Put your answer to the above question here

**QUESTION:** What kind of additional questions or support, if any, do you feel you need to have a better understanding of the content in this assignment?

Put your answer to the above question here

**QUESTION:** Do you have any further questions or comments about this material, or anything else that's going on in class?

Put your answer to the above question here

**QUESTION:** Approximately how long did this pre-class assignment take?

Put your answer to the above question here


Congratulations, we're done!

In order to successfully complete this assignment, you must do the required reading, watch the provided videos, and complete all instructions. The embedded survey form must be entirely filled out and submitted on or before 11:59pm on the day before class. Students must come to class the next day prepared to discuss the material covered in this assignment.

Course Resources:


Written by Dr. Dirk Colbry, Michigan State University Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.