Thread Closed

Solving parallel vectors, quicker method

 
Share Thread Thread Tools
Sep2-10, 01:34 PM   #1
 

Solving parallel vectors, quicker method


Ok, so I'm new to vectors, and I've been reading up on them and I think I understand how paralell vectors work, or at least instinctively.
a || xa, where x is a constant.

So I started doing some questions from my textbook, and I could manage, but I'm not sure if what I'm doing is the most efficient way to solve the problems.

For example:
Find s if 3i+4j -s(i-2j) is parallel to 2i + j

What I've done is:
3i+4j -s(i-2j)
=> 3i+4j -si + 2js = x(2i+j)
=> i(3-s) + j(4+2s) = 2xi+jx
=> 3-s = 2x, and
4+2s = x
=> 3-s = 2(4+2s)
=> 3-s = 8 + 4s
=> 3-8 = 4s + s
=> -5 = 5s
=> s = -1

When it comes to math I've never believed in there being a "correct" way to do stuff, but in this case, is there a "better" way to do these sorts of problems?
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Bird's playlist could signal mental strengths and weaknesses
>> Minus environment, patterns still emerge: Computational study tracks E. coli cells' regulatory mechanisms
>> Bacterium uses natural 'thermometer' to trigger diarrheal disease, scientists find
Sep2-10, 02:13 PM   #2

Homework Helper 2012
 
Recognitions:
Homework Helper Homework Help
Your solution is correct, and there is no "better way" in Maths. There can be shorter or simpler ways, but your method is simple enough. You can make it more complicated if you like

ehild
Sep2-10, 03:40 PM   #3
 
yay.
And yeah like I said, I agree, there is no "better" way, solving a problem quickly just compensates for what could have been enjoyed through the frustration of anwering the question.
Oh and, I don't wan't to create a new post, so, I might as well ask here, how do you measure the bearing of a vector?
Sep3-10, 03:04 AM   #4

Homework Helper 2012
 
Recognitions:
Homework Helper Homework Help

Solving parallel vectors, quicker method


Quote by riddle View Post
yay.

Oh and, I don't wan't to create a new post, so, I might as well ask here, how do you measure the bearing of a vector?
Sorry, I don't know what the bearing of a vector is. I never heard it. Could you please explain? Or it is better to start a new thread.

ehild
Sep3-10, 08:39 AM   #5
 
Quote by riddle View Post
yay.
And yeah like I said, I agree, there is no "better" way, solving a problem quickly just compensates for what could have been enjoyed through the frustration of anwering the question.
Oh and, I don't wan't to create a new post, so, I might as well ask here, how do you measure the bearing of a vector?
The short answer is with a protractor, plotter, or some other device.

I assume you meant calculate; in which case you find the slope of the vector, from that you can use trig to get the angle.
Sep3-10, 08:53 AM   #6
 
Yeah, ok, I'd figured out what it meant yesterday, thanks anyway.
Sep3-10, 09:09 AM   #7
 
There is another method, called the cross product, it's probably lurking a few pages ahead in your textbook! If not, Google. If two vectors a and b are parallel, their cross product, a x b = 0. It's defined for vectors in 3 dimensions, but you can still use it in your 2 dimensional example by just setting the third component of each vector equal to 0.

((3 - s)i + (4 + 2 s)j) x (2i + 1j) = (-5 -5s)k

which is 0 when s = -1, as you found. When you see the fiddly formula for calculating the components, you might wonder whether it's quicker. But you'll get use to it with practice, and it's certainly quick if you have a computer handy. E.g. in Mathematica:

Code:
In[1]:= Cross[{3 - s, 4 + 2 s, 0}, {2, 1, 0}] == 0

Out[1]= {0, 0, -5 - 5 s} == 0
Sep3-10, 09:24 AM   #8
 
You can find the angle between two vectors using what's called the dot product: a . b = |a| |b| cos(a,b), where |a| is the length of a, and cos(a,b) the cosine of the angle between them. a . b can be calculated by multiplying corresponding components and adding them together to give a number: (a1 i + a2 j + a3 k) . (b1 i + b2 j + b3 k) = a1 b1 + a2 b2 + a3 b3. So the angle is

Cos-1((a . b)/(|a| |b|)).

If you want the angle between a vector and one of the coordinate axes, dot it (that is, take its dot product) with the appropriate basis vector, e.g.

Cos-1((a . i)/(|a|)),

the length of i being 1.
Sep3-10, 09:41 AM   #9
 
Yeah, the dot product stuff is in the next book. I'm gonna start that in a week or two. Can't wait =)
Thread Closed

Tags
geometry proofs, parallel, vector
Thread Tools


Similar Threads for: Solving parallel vectors, quicker method
Thread Forum Replies
When two vectors are parallel? Calculus & Beyond Homework 2
Solving A Parallel Circuit Introductory Physics Homework 1
Parallel Vectors Precalculus Mathematics Homework 4
Why does a hot or warm ice cube tray freeze quicker than one at 33*F? General Physics 20
ice re-freezes quicker if hotter water used to melt it? Chemistry 2