S7-SA2-0136
What is Orthonormal Basis?
Grade Level:
Class 12
AI/ML, Physics, Biotechnology, FinTech, EVs, Space Technology, Climate Science, Blockchain, Medicine, Engineering, Law, Economics
Definition
What is it?
An orthonormal basis is a special set of vectors (like directions) that helps us describe any point or direction in a space. Each vector in this set is of 'unit length' (meaning its length is 1), and all vectors are 'perpendicular' to each other, like the corners of a perfect room.
Simple Example
Quick Example
Imagine a cricket field. You can describe any player's position using two main directions: straight down the pitch (forward/backward) and across the pitch (left/right). If these two directions are perfectly perpendicular and you measure distances in 'unit steps' (say, 1 meter each), then these two directions form an orthonormal basis for the field.
Worked Example
Step-by-Step
Let's check if two vectors, v1 = [1, 0] and v2 = [0, 1], form an orthonormal basis in a 2D space.
Step 1: Check if they are unit vectors (length is 1). For v1: length = sqrt(1^2 + 0^2) = sqrt(1) = 1. For v2: length = sqrt(0^2 + 1^2) = sqrt(1) = 1. Yes, both are unit vectors.
---Step 2: Check if they are perpendicular (their dot product is 0). Dot product of v1 and v2 = (1 * 0) + (0 * 1) = 0 + 0 = 0. Yes, they are perpendicular.
---Step 3: Since both conditions are met, v1 and v2 form an orthonormal basis.
Answer: Yes, v1 = [1, 0] and v2 = [0, 1] form an orthonormal basis.
Why It Matters
Orthonormal bases are super important in computer graphics for making realistic 3D games and movies, and in AI/ML for understanding complex data patterns. Engineers use them to design everything from mobile phones to space rockets, ensuring precise calculations. Knowing this helps you build strong foundations for careers in technology and science.
Common Mistakes
MISTAKE: Assuming any set of perpendicular vectors is an orthonormal basis. | CORRECTION: Remember, each vector must also have a length of exactly 1 (a unit vector). Perpendicularity alone is not enough.
MISTAKE: Forgetting to check if all vectors are perpendicular to *each other*. | CORRECTION: In a set of multiple vectors, every single pair must be perpendicular. Just two being perpendicular isn't enough if there are more vectors.
MISTAKE: Confusing 'orthonormal' with 'orthogonal'. | CORRECTION: 'Orthogonal' means only perpendicular. 'Orthonormal' means both perpendicular AND unit length. Orthonormal is a stronger condition.
Practice Questions
Try It Yourself
QUESTION: Are the vectors u = [1, 0] and v = [0, 2] an orthonormal basis? Explain why or why not. | ANSWER: No. While they are perpendicular (1*0 + 0*2 = 0), the vector v has a length of sqrt(0^2 + 2^2) = 2, which is not 1.
QUESTION: Consider the vectors a = [1/sqrt(2), 1/sqrt(2)] and b = [-1/sqrt(2), 1/sqrt(2)]. Do they form an orthonormal basis? Show your calculations. | ANSWER: Yes. Length of a = sqrt((1/sqrt(2))^2 + (1/sqrt(2))^2) = sqrt(1/2 + 1/2) = sqrt(1) = 1. Length of b = sqrt((-1/sqrt(2))^2 + (1/sqrt(2))^2) = sqrt(1/2 + 1/2) = sqrt(1) = 1. Dot product a.b = (1/sqrt(2))*(-1/sqrt(2)) + (1/sqrt(2))*(1/sqrt(2)) = -1/2 + 1/2 = 0. Both conditions are met.
QUESTION: If you have three vectors in 3D space: e1 = [1, 0, 0], e2 = [0, 1, 0], and e3 = [0, 0, 1], do they form an orthonormal basis? Explain each step. | ANSWER: Yes. Step 1: Check unit length. Length of e1 = sqrt(1^2+0^2+0^2) = 1. Length of e2 = sqrt(0^2+1^2+0^2) = 1. Length of e3 = sqrt(0^2+0^2+1^2) = 1. All are unit vectors. Step 2: Check perpendicularity. e1.e2 = (1*0)+(0*1)+(0*0) = 0. e1.e3 = (1*0)+(0*0)+(0*1) = 0. e2.e3 = (0*0)+(1*0)+(0*1) = 0. All pairs are perpendicular. Since both conditions are met, they form an orthonormal basis.
MCQ
Quick Quiz
Which of the following is a key property of an orthonormal basis?
All vectors have a length greater than 1.
All vectors are parallel to each other.
All vectors are perpendicular to each other AND have a length of 1.
The sum of all vectors is zero.
The Correct Answer Is:
C
An orthonormal basis requires two conditions: all vectors must be perpendicular (orthogonal) to each other, and each vector must have a length of exactly 1 (unit vector).
Real World Connection
In the Real World
When you use your phone's GPS or a navigation app like Google Maps, the app uses mathematical concepts like orthonormal bases to pinpoint your exact location on Earth. Satellite signals are processed using these principles to determine distances and directions very accurately, helping your auto-rickshaw driver find you quickly in a crowded Indian market.
Key Vocabulary
Key Terms
VECTOR: A quantity having direction and magnitude | UNIT VECTOR: A vector with a length (magnitude) of 1 | PERPENDICULAR: Two lines or vectors that meet at a 90-degree angle | DOT PRODUCT: A mathematical operation on two vectors that gives a single number, used to check perpendicularity | BASIS: A set of vectors that can describe any other vector in a given space
What's Next
What to Learn Next
Next, you can explore 'Gram-Schmidt Orthonormalization'. This technique shows you how to take any set of vectors and transform them into a beautiful orthonormal basis, which is super useful in many advanced applications!


