InterviewSolution
Saved Bookmarks
| 1. |
The sum of two numbers is c and their quotient is `p/q`. Find the numbers. |
|
Answer» Let the numbers be x, y. Given `" "x+y=c …(1)` and, `x/y=p/q …(2)` `:. x/(x+y)=p/(p+q)` `rArr x/c=p/(p+q)["Using (1)"]` `rArr x=(pc)/(p+q)" and "y=(qc)/(p+q)` |
|