Angle between (1, 0) and (1, 1)
Use the dot product to find the angle between two 2D vectors.
Solution
- Vectors a = (1, 0), b = (1, 1)
- Magnitudes |a| = 1, |b| = 1.41421
- Dot product a · b = 1
- Cross product (2D scalar) a × b = 1
- Angle between θ = arccos(a·b / (|a||b|)) = 45°
Try a similar problem yourself
Use the Vector Calculator to solve a similar problem with your own values.
Open the solver