Definition 6.4.1. Inner Product Space.
A vector space with an inner product is called an inner product space.
xxxxxxxxxx
f = x^2-x+1
g = 5*x+6
f_inner_g = integral(f*g,x,1,4)
f_normal = sqrt(integral(f*f,x,1,4))
# compute the norm of the function g
​
# find the angle between f and g.
xxxxxxxxxx
# convert the angle from radians to degrees.
xxxxxxxxxx
​
xxxxxxxxxx
​