[SOLVED] Vector Problem
Given
Suppose a and b are vectors in Vn and theta is the angle between them. If a=<1,1,...,1> and b=<1,2,...,n>, find the limiting value of theta as n-->infinity
Relevent equations:
a*b = |a|*|b| * cos(theta)
or
theta = arccos ((a*b)/(|a|*|b|)
I know...