Question: If the vector a = (1, 2) and b = (3, 4), find the angle between them using the dot product.
Options:
Correct Answer: 60 degrees
Solution:
cos(θ) = (a · b) / (|a| |b|). a · b = 1*3 + 2*4 = 11, |a| = √(1^2 + 2^2) = √5, |b| = √(3^2 + 4^2) = 5. Thus, cos(θ) = 11 / (√5 * 5) = 11 / (5√5), θ = 60 degrees.