This problem is driving me crazy...javascript:emoticon(':?:'

This topic has expert replies
Junior | Next Rank: 30 Posts
Posts: 21
Joined: Tue Jun 10, 2008 1:27 pm
Thanked: 3 times
Even though, I know it is pretty simple, I just can't wrap my head around
it. I have tried every which way, but no success. So, please give it a shot and let me know how its done...


If w>y, the average of x and y is z, and the average of z and x is w, what is the value of (x-w)/(w-y) = ?


Thanks!

Legendary Member
Posts: 631
Joined: Mon Feb 18, 2008 11:57 pm
Thanked: 29 times
Followed by:3 members

by netigen » Wed Jun 11, 2008 2:10 pm
(y+x)/2 = z -->EQ 1

(z+x)/2 = w ---> EQ2

from EQ2 --->

z+x = 2w
x- w = w-z
x- w = w-(x+y)/2 (subs for z from EQ 1)
2 (x-w) = 2w-x -y
2 (x-w) = w-y + (w-x)
2 (x-w) - (w-x) = w-y
2 (x-w) + (x-w) = w-y
3 (x-w) = w-y
(x-w)/(w-y) = 1/3

Junior | Next Rank: 30 Posts
Posts: 21
Joined: Tue Jun 10, 2008 1:27 pm
Thanked: 3 times

by litteraround » Wed Jun 11, 2008 2:25 pm
Thanks a lot.