Geoff's Line length given Co-ordinates problem

jazzygeoff

New member
Joined
Jan 4, 2006
Messages
12
Hi all,

I wonder if someone can fill in the working for this problem?
I need to find length of the straight line between two points A and B on a graph.

The coordinates are (p,q) and (q,p).

AB is then:- sqrt ((q-p)^2 + (p-q)^2)

The answer in the book is:- sqrt (2(p-q)^2)

What is the working inbetween???? I can't get that result!!
Sorry if my maths typing is not very good!

Geoff
 
Please note that (p−q)=−(q−p).
If we square both sides then they must be equal:
[(p−q)]<SUP>2</SUP>=[−(q−p)]<SUP>2</SUP>
√[2(p−q)<SUP>2</SUP>]
 
Wow thanks for that! 7 minutes for a reply!

I really appreciate it! By the way, how do you do the cool little sqrt and ^2 characters? I'm new to this message board.

Thanks again,
Geoff
 
The magic is in
( t y p e d w i t h no spaces )
x<sup>2</sup> = x < s u p > 2 < / s u p >
You can also use
x<sub>2</sub> = x < s u b > 2 < / s u b >
 
You can usually get the same effect by inserting an empty "bold". For instance:

. . . . .x<sup>2</sup>

...is formatted as:

. . . . .x<sup>2</sup>

...which I got to display in the line above by typing as follows:

. . . . .x<sup>2</sup>

See? :wink:

Eliz.
 
Top