18 In-Class Assignment: Inner Products¶
Image from: https://www.wikipedia.org/
Agenda for today’s class (80 minutes)¶
1. Pre-class Review¶
An inner product on a real vector space \(V\) 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. However, we can define many other inner products.
Norm of a vector¶
Let \(V\) be an inner product space. The norm of a vector \(v\) is denoted \(\lVert v \rVert\) and is defined by:
Angle between two vectors¶
Let \(V\) be a real inner product space. The angle \(\theta\) between two nonzero vectors \(u\) and \(v\) in \(V\) is given by:
Orthogonal Vectors¶
Let \(V\) be an inner product space. Two vectors \(u\) and \(v\) in \(V\) are orthogonal if their inner product is zero:
Distance¶
Let \(V\) be an inner product space. The distance between two vectors (points) \(u\) and \(v\) in \(V\) is denoted \(d(u,v)\) and is defined by:
2. Minkowski Geometry¶
Consider the following pseudo inner-product which is used to model special relativity in \(R^4\):
It has the following norms and distances:
✅QUESTION: The Minkowski Geometry is called pseudo inner product because it violates one of the inner product axioms. Discuss the axioms in your group and decide which one it violates.
Put your answer to the above quesiton here
The Physical Interpretation of Minkowski Geometry¶
The distance between two points on the path of an observer in Minkowski geometry corresponds to the time recorded by that observer in traveling between the two points.
We assume that Alpha Centauri lies in the \(x_1\) direction from the Earch. The twin on Earth advances in time \(x_4\). There is no motion in either the \(x_2\) or \(x_3\) directions. Twin 2 on board the rocket advances in time and moves toward Alpha Centauri and back to the Earth.
Let \(P=(0,0,0,0)\), \(R=(4,0,0,5)\), and \(Q=(0,0,0,10)\).
\(d(P, Q) =10\) means that Twin 1 ages 10 years from \(P\) to \(Q\). Because \(x_1\) does not change and only the time \(x_4\) changes. Twin 1 does not travel and stay on Earth for 10 years.
\(d(P, R) =3\) means that Twin 2 ages 3 years in traveling from \(P\) to \(R\). When Twin 2 arrives at the \(R\), the time on the earth has passed \(5\) years, though the recored time by Twin 2 is only \(3\) years.
\(d(R, Q) =3\) means taht Twin 2 ages 3 years in traveling from \(R\) to \(Q\). When Twin 2 travels back to the Earth \(P\), it records 3 years but the time at the Earch has passed 5 years.
The time from \(P->R->Q\) is shorter than \(P->Q\).
✅QUESTION: The star cluster Pleiades in the constellation Taurus is 410 light years from Earth. A generational spaceship to the cluster traveling at constant speed ages 850 years on a round trip. By the time the spaceship returns to Earth, how many centuries will have passed on Earth?
Put your answer to the above quesiton here
✅QUESTION: How fast was the spaceship going relative to earth?
Put your answer to the above question here.
3. Function Approximation¶
Definition: Let \(C[a,b]\) be a vector space of all possible continuous functions over the interval \([a,b]\) with inner product: $\(\langle f,g \rangle = \int_a^b f(x)g(x) dx.\)$
Now let \(f\) be an element of \(C[a,b]\), and \(W\) be a subspace of \(C[a,b]\). The function \(g \in W\) such that \(\int_a^b \left[ f(x) - g(x) \right]^2 dx\) is a minimum is called the least-squares approximation to \(f\).
The least-squares approximation to \(f\) in the subspace \(W\) can be calculated as the projection of \(f\) onto \(W\):
If \(\{g_1, \ldots, g_n\}\) is an orthonormal basis for \(W\), we can replace the dot product of \(R^n\) by an inner product of the function space and get:
Polynomial Approximations¶
An orthogonal bases for all polynomials of degree less than or equal to \(n\) can be computed using Gram-schmidt orthogonalization process. First we start with the following standard basis vectors in \(W\)
The Gram-Schmidt process can be used to make these vectors orthogonal. The resulting polynomials on \([-1,1]\) are called Legendre polynomials. The first six Legendre polynomial basis are:
✅QUESTION: What is the least-squares linear approximations of \(f(x) = e^x\) over the interval \([-1, 1]\). In other words, what is the projection of \(f\) onto \(W\), where \(W\) is a first order polynomal with basis vectors \(\{1, x\} (i.e. n=1)\). (Hint: You can give the answer in integrals without computing the integrals. Note the Legendre polynomials are not normalized.)
Put your answer to the above question here.
Here is a plot of the equation \(f(x) = e^x\):
%matplotlib inline
import matplotlib.pylab as plt
import numpy as np
#px = np.linspace(-1,1,100)
#py = np.exp(px)
#plt.plot(px,py, color='red');
import sympy as sym
from sympy.plotting import plot
x = sym.symbols('x')
f = sym.exp(x)
plot(f,(x,-1,1))
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-2299b6a91430> in <module>
----> 1 get_ipython().run_line_magic('matplotlib', 'inline')
2 import matplotlib.pylab as plt
3 import numpy as np
4
5 #px = np.linspace(-1,1,100)
~/REPOS/MTH314_Textbook/MakeTextbook/envs/lib/python3.9/site-packages/IPython/core/interactiveshell.py in run_line_magic(self, magic_name, line, _stack_depth)
2342 kwargs['local_ns'] = self.get_local_scope(stack_depth)
2343 with self.builtin_trap:
-> 2344 result = fn(*args, **kwargs)
2345 return result
2346
~/REPOS/MTH314_Textbook/MakeTextbook/envs/lib/python3.9/site-packages/decorator.py in fun(*args, **kw)
230 if not kwsyntax:
231 args, kw = fix(args, kw, sig)
--> 232 return caller(func, *(extras + args), **kw)
233 fun.__name__ = func.__name__
234 fun.__doc__ = func.__doc__
~/REPOS/MTH314_Textbook/MakeTextbook/envs/lib/python3.9/site-packages/IPython/core/magic.py in <lambda>(f, *a, **k)
185 # but it's overkill for just that one bit of state.
186 def magic_deco(arg):
--> 187 call = lambda f, *a, **k: f(*a, **k)
188
189 if callable(arg):
~/REPOS/MTH314_Textbook/MakeTextbook/envs/lib/python3.9/site-packages/IPython/core/magics/pylab.py in matplotlib(self, line)
97 print("Available matplotlib backends: %s" % backends_list)
98 else:
---> 99 gui, backend = self.shell.enable_matplotlib(args.gui.lower() if isinstance(args.gui, str) else args.gui)
100 self._show_matplotlib_backend(args.gui, backend)
101
~/REPOS/MTH314_Textbook/MakeTextbook/envs/lib/python3.9/site-packages/IPython/core/interactiveshell.py in enable_matplotlib(self, gui)
3511 """
3512 from IPython.core import pylabtools as pt
-> 3513 gui, backend = pt.find_gui_and_backend(gui, self.pylab_gui_select)
3514
3515 if gui != 'inline':
~/REPOS/MTH314_Textbook/MakeTextbook/envs/lib/python3.9/site-packages/IPython/core/pylabtools.py in find_gui_and_backend(gui, gui_select)
278 """
279
--> 280 import matplotlib
281
282 if gui and gui != 'auto':
ModuleNotFoundError: No module named 'matplotlib'
We can use sympy
to compute the integral. The following code compute the definite integral of
$\(\int_{-1}^1 e^x dx.\)$
In fact, sympy
can also compute the indefinite integral by removing the interval.
sym.init_printing()
x = sym.symbols('x')
sym.integrate('exp(x)',(x, -1, 1))
#sym.integrate('exp(x)',(x))
Use sympy
to compute the first order polynomial that approximates the function \(e^x\).
The following calculates the above approximation written in sympy
:
g_0 = sym.integrate('exp(x)*1',(x, -1, 1))/sym.integrate('1*1',(x,-1,1))*1
g_1 = g_0 + sym.integrate('exp(x)*x',(x,-1,1))/sym.integrate('x*x',(x,-1,1))*x
g_1
Plot the original function \(f(x)=e^x\) and its approximation.
p2 = plot(f, g_1,(x,-1,1))
#For fun, I turned this into a function:
x = sym.symbols('x')
def lsf_poly(f, gb = [1, x], a =-1, b=1):
proj = 0
for g in gb:
# print(sym.integrate(g*f,(x,a,b)))
proj = proj + sym.integrate(g*f,(x,a,b))/sym.integrate(g*g,(x,a,b))*g
return proj
lsf_poly(sym.exp(x))
✅QUESTION: What would a second order approximation look like for this function? How about a fifth order approximation?
Put your answer to the above question here
#####Start your code here #####
x = sym.symbols('x')
g_2 =
g_2
#####End of your code here#####
p2 = plot(f, g_2,(x,-1,1))
Written by Dr. Dirk Colbry, Michigan State University
This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.