Difficulty: Medium
Correct Answer: x > y
Explanation:
Introduction / Context:
We compare any root x from the first quadratic with any root y from the second. If every x exceeds every y (or vice versa), then the relationship is determined. Compute all roots and compare the ranges systematically.
Given Data / Assumptions:
Concept / Approach:
Find both roots of each quadratic precisely. Determine the interval of possible x values and the interval of possible y values. If the minimum x is greater than the maximum y, then x > y for all combinations.
Step-by-Step Solution:
Verification / Alternative check:
Test all combinations explicitly: {−0.75, −0.5} minus {−3, −0.8} ⇒ all differences are positive.
Why Other Options Are Wrong:
Common Pitfalls:
Arithmetic errors in discriminants or sign mistakes when dividing. Always simplify first to reduce errors.
Final Answer:
Discussion & Comments