229k views
5 votes
Let a and b be vectors in R". Use the definitions of proj,a and orth,a to show that orth,a is always orthogonal to proj,a.

User Szabolcs
by
8.1k points

1 Answer

4 votes

Final answer:

The orthogonal complement of a vector a, called orth,a, is not always orthogonal to the projection of a onto another vector b, called proj,a. To prove this, we can use the dot product. By showing that the dot product of orth,a and proj,a is not equal to zero, we can conclude that orth,a and proj,a are not orthogonal in general.

Step-by-step explanation:

In order to show that orth,a is always orthogonal to proj,a, we need to understand the definitions of these two vectors. The projection of a vector a onto another vector b, denoted as proj,a, is a vector that lies on the same line as b and represents the component of a in the direction of b. On the other hand, orth,a (which is also called the orthogonal complement of a) is a vector that is perpendicular to a.

Now, let's assume that a and b are vectors in R^n. To prove that orth,a is orthogonal to proj,a, we can use the dot product. The dot product of two vectors is zero if and only if the vectors are orthogonal. Therefore, we need to show that the dot product of orth,a and proj,a is zero.

Using the definitions of proj,a and orth,a, we can write:

proj,a = ((a · b) / (b · b)) * b

orth,a = a - proj,a

Now, let's find the dot product of orth,a and proj,a:

(orth,a · proj,a) = (a - ((a · b) / (b · b)) * b) · (((a · b) / (b · b)) * b)

We can distribute the dot product:

(a · ((a · b) / (b · b)) * b) - (((a · b) / (b · b)) * b · ((a · b) / (b · b)) * b)

Now, we simplify:

((a · a) · (b · b)) / (b · b) - (((a · b) / (b · b)) * (b · b) · ((a · b) / (b · b)))

The term (b · b) / (b · b) simplifies to 1:

((a · a) · (b · b)) / (b · b) - ((a · b) / (b · b)) * ((a · b) / (b · b)) * (b · b)

And we know that (a · a) / (b · b) is equal to 1, since (a · b) / (b · b) is the scalar projection of a onto b:

1 - ((a · b) / (b · b)) * ((a · b) / (b · b)) * (b · b)

So the dot product is:

1 - (1) * (b · b)

Since (b · b) is always positive, the dot product is equal to 1 - (b · b), which is not equal to zero. Therefore, orth,a and proj,a are not orthogonal in general. This proves that orth,a is not always orthogonal to proj,a.

User Luca Manzo
by
7.1k points