StepWorking
01Given
Given the quadratic equation x2−px+45p=0 with p∈[0,10] and an integer. q is the maximum integral value of p such that the roots of the equation are rational. The target region is defined by 0≤y≤(x−q)2 and 0≤x≤q.
02Approach
For a quadratic with rational coefficients to have rational roots, its discriminant D must be the square of a rational number. Since p is an integer, D=p2−5p must be a perfect square of an integer. We test integral values of p∈[0,10] from 10 downwards to find q, then compute the area via definite integration: Area=∫0q(x−q)2dx.
03Execute
Calculate the discriminant: D=(−p)2−4(1)(45p)=p2−5p. We require p(p−5)=k2 for some integer k≥0. Checking integers p∈[0,10] in descending order:
- For p=10: D=100−50=50 (not a square)
- For p=9: D=81−45=36=62 (a perfect square).
Hence, the maximum integral value is q=9.
04Execute
Compute the area of the region 0≤y≤(x−9)2 for 0≤x≤9:
Area=∫09(x−9)2dx=[3(x−9)3]09=0−(−393)=3729=243.
✓Verify
By substitution u=9−x, ∫09(x−9)2dx=∫09u2du=393=243. Both integration bounds and antiderivative signs are confirmed.