CAT 1995 — QA Question 38
Directions for next 4 questions: Answer the questions based on the following information.
le(x, y) = Least of (x, y)
mo(x) = |x|
me(x, y) = Maximum of (x, y)
Which of the following must always be correct for a, b > 0?
Answer & solution
Correct answer: mo(le(a,b)) = le(mo(a), mo(b))
- A
mo(le(a, b)) ≥ (me(mo(a), mo(b))
- B
mo(le(a, b)) > (me(mo(a), mo(b))
- C
mo(le(a, b)) < (le(mo(a), mo(b))
mo(le(a,b)) = le(mo(a), mo(b))
Please note that the fastest way to solve these sums is the method of simulation, i.e., select any arbitrary values in the range given and verify whether the option holds good. E.g. a = 2, b = 3.
In this case, option (a) LHS = mo(le(2, 3)) = mo(2) = 2.
RHS = (me(mo(2), mo(3)) = (me(2, 3)) = 3. Hence, LHS < RHS.
(b) LHS = mo(le(2, 3)) = mo(2) = 2. RHS = (me(mo(2), mo(3)) = (me(2, 3)) = 3. Hence, LHS < RHS.
(c) LHS = mo(le(2, 3)) = mo(2) = 2. RHS = (le(mo(2), mo(3)) = le(2, 3) = 2. Hence, LHS = RHS.
(d) LHS = mo(le(2, 3)) = mo(2) = 2. RHS = (le(mo(2), mo(3)) = le(2, 3) = 2. Hence, LHS = RHS.
Related Basics (Functions) questions
- Largest value of min(2 + x 2 , 6 – 3x), when x > 0, is…
- Find the value of me(a + mo(le(a, b)); mo(a + me(mo(a), mo(b))), at a = –2…
- For what values of ‘a’ is me(a 2 – 3a, a – 3) < 0?…
- For what values of ‘a’ is le(a 2 – 3a, a – 3) < 0?…