Comprehension

$le(x, y) = \text{Least of} \ (x, y)$

$mo(x) = |x|$

$me(x, y) = \text{Maximum of} \ (x, y)$

Question: 1

Find the value of: \[ \text{me}(a + \text{mo}(\text{le}(a, b)),\; \text{mo}(a + \text{me}(\text{mo}(a), \text{mo}(b)))) \] where $a = -2$ and $b = -3$.

Show Hint

Always resolve the innermost functions first (le, mo) before handling me. This avoids confusion in nested expressions.
Updated On: Aug 6, 2025
  • 1
  • 0
  • 5
  • 3
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

Step 1: Evaluate $\text{le}(a, b)$ = least of $(-2, -3)$ = $-3$.
Step 2: mo$(\text{le}(a, b))$ = mo$(-3)$ = $|{-3}|$ = $3$.
Step 3: First argument of me = $a + \text{mo}(\text{le}(a, b))$ = $-2 + 3 = 1$. Step 4: mo$(a)$ = $|-2| = 2$, mo$(b)$ = $|-3| = 3$.
Step 5: $\text{me}(\text{mo}(a), \text{mo}(b))$ = me$(2, 3) = 3$.
Step 6: Second argument inside mo = $a + \text{me}(\text{mo}(a), \text{mo}(b))$ = $-2 + 3 = 1$.
Step 7: mo$(1) = |1| = 1$. Step 8: Final = me$(1, 1) = 1$.
Was this answer helpful?
0
0
Question: 2

Which of the following must always be correct for $a, b>0$?

Show Hint

For positive numbers, mo and le preserve order relationships, making inequality comparisons straightforwar(d)
Updated On: Aug 6, 2025
  • mo(le(a, b)) $\ge$ me(mo(a), mo(b))
  • mo(le(a, b)) $>$ me(mo(a), mo(b))
  • mo(le(a, b)) $\le$ me(mo(a), mo(b))
  • mo(le(a, b)) = le(mo(a), mo(b))
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

Since $a, b>0$, le$(a, b)$ is simply the smaller of $a$ and $b$. - mo(le(a, b)) = $| \text{smaller of } a, b |$ = smaller of $a, b$. - me(mo(a), mo(b)) = max($a, b$) since $a, b$ are positive. Clearly, smaller $\le$ larger, so: \[ \text{mo(le(a, b))} \le \text{me(mo(a), mo(b))} \] is always true.
Was this answer helpful?
0
0
Question: 3

For what values of $a$ is me$(a^2 - 3a, a - 3)<0$?

Show Hint

For me$(X, Y)<0$, check both expressions are negative; intersection of solution sets is the answer.
Updated On: Aug 6, 2025
  • $a>3$
  • $0<a<3$
  • $a<0$
  • $a = 3$
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

me$(X, Y)<0$ means both $X<0$ and $Y<0$. Here: $X = a^2 - 3a$, $Y = a - 3$. Step 1: $a - 3<0 \implies a<3$. Step 2: $a^2 - 3a<0 \implies a(a - 3)<0 \implies 0<a<3$. Both must hold simultaneously: $a<3$ and $0<a<3$ gives $0<a<3$. But careful — For $a<0$, - $a^2 - 3a>0$? Wait — check: if $a<0$, $a^2$ is positive, $-3a$ positive, so sum positive → contradiction. Actually the only valid range from intersection is $0<a<3$. Correction — answer is (b).
Was this answer helpful?
0
0
Question: 4

For what values of $a$ is le$(a^2 - 3a, a - 3)<0$?

Show Hint

For le$(X, Y)<0$, only one of them needs to be negative; check ranges where the smaller expression is negative.
Updated On: Aug 6, 2025
  • $a>3$
  • $0<a<3$
  • $a<0$
  • Both b and c
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

le$(X, Y)<0$ means the smaller of $X$ and $Y$ is negative. Case 1: $0<a<3$: - $a - 3<0$, so le$(X, Y)$ is negative → condition true. Case 2: $a<0$: - $a - 3<0$, so again le$(X, Y)$ is negative regardless of $X$. Thus, both $a<0$ and $0<a<3$ satisfy.
Was this answer helpful?
0
0