Let a and b denote 2 2d vectors

  • Thread starter Thread starter ibaforsale
  • Start date Start date
  • Tags Tags
    2d Vectors
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
38 replies · 5K views
ibaforsale
Messages
31
Reaction score
0

Homework Statement



Let a and b denote two 2D vectors a = <a1, a2> b=<b1, b2>

show directly that a . b ≤ ||a||||b||

Homework Equations


The Attempt at a Solution



Im looking for a place to start here. Should i start by computing the dot product of a and b and then also finding the magnitude of a and b?
 
Last edited:
Physics news on Phys.org
ibaforsale said:

Homework Statement



Let a and b denote two 2D vectors a = <a1, a2> b=<b1, b2>

show directly that a . b ≤ ||a||||b||

Homework Equations





The Attempt at a Solution



Im looking for a place to start here. Should i start by computing the dot product of a and b and then also finding the magnitude of a and b?

Are you asking for our permission?
 
no, a push in the right direction.
 
i did, " Should i start by computing the dot product of a and b and then also finding the magnitude of a and b"
 
so after doing it i got a1b1 + a2b2 ≤ (a1+a2)(b1+b2)

which can be expanded out to a1b1 + a2b2 ≤ a1b1 + a1b2 + a2b1 + a2b2
 
Last edited:
since there's more terms on the right side can it be said that its greater than the left side?
 
ibaforsale said:
so after doing it i got a1b1 + a2b2 ≤ (a1+a2)(b1+b2)

which can be expanded out to a1b1 + a2b2 ≤ a1b1 + a1b2 + a2b1 + a2b2

ibaforsale said:
since there's more terms on the right side can it be said that its greater than the left side?

No. The first thing you need to do is use the correct formulas for ##\|a\|## and ##\|b\|##.
 
isnt ||a|| = Sqrt(a12 + a22)?
 
if theyre both squared can't you just take the sqrt and end up with a1+a2?
 
ahh i see

so then i get

a1b1 + a2b2 ≤ √(a12+a22) + √(b12+b22)
 
Last edited:
my mistake

a1b1 + a2b2 ≤ √(a12+a22) √(b12+b22)

how can i determine the truth of the inequality?
 
Last edited:
(a1b1)2 + (a2b2)2 ≤ (a12+a22) + (b12+b22)

I can then multiply out the right side which gives me something similar to what i got in step 7 just the a and b terms are all squared

can i then subtract the left side to get 0 <= a12b22 + a22b12?
 
Last edited:
ibaforsale said:
(a1b1)2 + (a2b2)2 ≤ (a12+a22) + (b12+b22)

I can then multiply out the right side which gives me something similar to what i got in step 7 just the a and b terms are all squared

can i then subtract the left side to get 0 <= a12b22 + a22b12?

You have that bogus + sign in there again and if you are squaring both sides, your algebra is wrong. You are never going to get this problem correct if you can't do algebra correctly.
 
made a mistake and posted twice
 
Last edited:
so the left side should be (a1b1 + a2b2)2?
 
Yes.
It would be easier for us if you put each whole inequality so we don't have to go 10 or 15 posts back to see where you're coming from.
 
hopefully there's no algebra mistakes now

i started with
a1b1 + a2b2 ≤ √(a12+a22) + √(b12+b22)

squared both sides to get
(a1b1 + a2b2)2 ≤ (a12+a22) (b12+b22)

after working out both sides i end up with

2a1b1a2b2 <= a12b22 + a22b12
 
Last edited:
ibaforsale said:
hopefully there's no algebra mistakes now

i started with
a1b1 + a2b2 ≤ √(a12+a22) + √(b12+b22)

squared both sides to get
(a1b1 + a2b2)2 ≤ (a12+a22) (b12+b22)

after working out both sides i end up with

2a1b1a2b2 <= a12b22 + a22b12

Well yes, you finally have the algebra correct. So what about that last inequality? Is it true? Hint: Collect all the terms on the right hand side and think about what you have.
 
That looks correct. In the first line there's a + in the right hand side where it's supposed to be a multiplication, but you use it as a multiplication in the second line, so it doesn't cause any problems with the final line.

Now comes trying to prove the inequality that you have left... any ideas on what to do?
 
what terms are there to collect? it seems to me that they are different, the first las a1b2 and the second has a2b1
 
oh okay, so i get

2 <= (a12b22 + a22b12) / a1b1a2b2

or if i move everything i get

0 <= a12b22 + a22b12 - 2a1b1a2b2