Skip to main content

Quadratics — Diagnostic Tests

Unit Tests

Tests edge cases, boundary conditions, and common misconceptions for quadratics.

UT-1: Discriminant Analysis with Non-Integer Coefficients

Question:

The quadratic equation px2+(p+1)x+p1=0px^2 + (p+1)x + p - 1 = 0 has real roots. Find the complete range of values of pp for which the equation has:

(a) two distinct real roots,

(b) a repeated root,

(c) no real roots.

Also determine for which values of pp the roots are positive.

[Difficulty: hard. Tests discriminant analysis when the discriminant itself is a quadratic in the parameter.]

Solution:

The discriminant is:

Δ=(p+1)24p(p1)=p2+2p+14p2+4p=3p2+6p+1\Delta = (p+1)^2 - 4p(p-1) = p^2 + 2p + 1 - 4p^2 + 4p = -3p^2 + 6p + 1

(a) Two distinct real roots require Δ>0\Delta > 0:

3p2+6p+1>0-3p^2 + 6p + 1 > 0 3p26p1<03p^2 - 6p - 1 < 0

The roots of 3p26p1=03p^2 - 6p - 1 = 0 are:

p=LB6±36+12RB◆◆LB6RB=LB6±48RB◆◆LB6RB=LB6±43RB◆◆LB6RB=LB3±23RB◆◆LB3RB=1±LB23RB◆◆LB3RBp = \frac◆LB◆6 \pm \sqrt{36 + 12}◆RB◆◆LB◆6◆RB◆ = \frac◆LB◆6 \pm \sqrt{48}◆RB◆◆LB◆6◆RB◆ = \frac◆LB◆6 \pm 4\sqrt{3}◆RB◆◆LB◆6◆RB◆ = \frac◆LB◆3 \pm 2\sqrt{3}◆RB◆◆LB◆3◆RB◆ = 1 \pm \frac◆LB◆2\sqrt{3}◆RB◆◆LB◆3◆RB◆

Since 3p26p13p^2 - 6p - 1 is a positive quadratic, it is negative between the roots:

1LB23RB◆◆LB3RB<p<1+LB23RB◆◆LB3RB1 - \frac◆LB◆2\sqrt{3}◆RB◆◆LB◆3◆RB◆ < p < 1 + \frac◆LB◆2\sqrt{3}◆RB◆◆LB◆3◆RB◆

Approximately: 0.155<p<2.155-0.155 < p < 2.155.

Note: We also require p0p \neq 0 for this to be a genuine quadratic. If p=0p = 0, the equation becomes x1=0x - 1 = 0, which has one real root. So p=0p = 0 is excluded from the quadratic case.

(b) A repeated root requires Δ=0\Delta = 0:

p=1±LB23RB◆◆LB3RBp = 1 \pm \frac◆LB◆2\sqrt{3}◆RB◆◆LB◆3◆RB◆

(c) No real roots require Δ<0\Delta < 0:

p<1LB23RB◆◆LB3RBorp>1+LB23RB◆◆LB3RBp < 1 - \frac◆LB◆2\sqrt{3}◆RB◆◆LB◆3◆RB◆ \quad \text{or} \quad p > 1 + \frac◆LB◆2\sqrt{3}◆RB◆◆LB◆3◆RB◆

Positive roots condition: By Vieta's formulas, for both roots to be positive we need:

  • Sum of roots >0> 0: p+1p>0-\frac{p+1}{p} > 0
  • Product of roots >0> 0: p1p>0\frac{p-1}{p} > 0

For the sum: p+1p>0    p+1p<0-\frac{p+1}{p} > 0 \implies \frac{p+1}{p} < 0. This is satisfied when 1<p<0-1 < p < 0.

For the product: p1p>0\frac{p-1}{p} > 0. This is satisfied when p>1p > 1 or p<0p < 0.

Both conditions simultaneously: 1<p<0-1 < p < 0.

But we also need Δ0\Delta \geq 0. For 1<p<0-1 < p < 0, checking Δ=3p2+6p+1\Delta = -3p^2 + 6p + 1: at p=1p = -1, Δ=36+1=8<0\Delta = -3-6+1 = -8 < 0; at p=0p = 0, Δ=1>0\Delta = 1 > 0. The discriminant is zero at p=123/30.155p = 1 - 2\sqrt{3}/3 \approx -0.155.

So for positive roots, we need 123/3p<01 - 2\sqrt{3}/3 \leq p < 0 (approximately 0.155p<0-0.155 \leq p < 0).


UT-2: Hidden Quadratics and Non-Standard Forms

Question:

(a) Solve the equation x2/3x1/36=0x^{2/3} - x^{1/3} - 6 = 0, giving all real solutions.

(b) The curve CC has equation y=2x+1x1y = 2\sqrt{x+1} - x - 1. Find the coordinates of all points where CC intersects the line y=0y = 0, and determine the maximum value of yy on CC.

[Difficulty: hard. Tests recognition of hidden quadratic structure and the domain constraints that students commonly miss.]

Solution:

(a) Let u=x1/3u = x^{1/3}. Then u2=x2/3u^2 = x^{2/3}, and the equation becomes:

u2u6=0u^2 - u - 6 = 0 (u3)(u+2)=0(u-3)(u+2) = 0 u=3oru=2u = 3 \quad \text{or} \quad u = -2

Since u=x1/3u = x^{1/3} and the cube root is defined for all real xx:

  • x1/3=3    x=27x^{1/3} = 3 \implies x = 27
  • x1/3=2    x=8x^{1/3} = -2 \implies x = -8

Both solutions are valid.

(b) For y=0y = 0:

2x+1x1=02\sqrt{x+1} - x - 1 = 0 2x+1=x+12\sqrt{x+1} = x + 1

Let u=x+1u = \sqrt{x+1}. The domain requires x+10x + 1 \geq 0, so x1x \geq -1, meaning u0u \geq 0.

2u=u22u = u^2 u22u=0u^2 - 2u = 0 u(u2)=0u(u-2) = 0

So u=0u = 0 or u=2u = 2 (both valid since u0u \geq 0).

  • u=0u = 0: x+1=0    x=1\sqrt{x+1} = 0 \implies x = -1, giving point (1,0)(-1, 0).
  • u=2u = 2: x+1=2    x=3\sqrt{x+1} = 2 \implies x = 3, giving point (3,0)(3, 0).

Finding the maximum: Since x+1=u2x + 1 = u^2, we have x=u21x = u^2 - 1 and:

y=2uu2=(u22u)=(u1)2+1y = 2u - u^2 = -(u^2 - 2u) = -(u-1)^2 + 1

This is a downward-opening parabola in uu with vertex at u=1u = 1. Since u0u \geq 0, u=1u = 1 is attainable.

At u=1u = 1: x=0x = 0, y=1y = 1.

The maximum value of yy on CC is 1\boxed{1}, occurring at the point (0,1)(0, 1).


UT-3: Vieta's Formulas with Non-Standard Quadratic Forms

Question:

The roots of the equation 2x25x+1=02x^2 - 5x + 1 = 0 are α\alpha and β\beta.

Without finding the numerical values of α\alpha and β\beta, find the value of:

LB1RB◆◆LBα2+1RB+LB1RB◆◆LBβ2+1RB\frac◆LB◆1◆RB◆◆LB◆\alpha^2 + 1◆RB◆ + \frac◆LB◆1◆RB◆◆LB◆\beta^2 + 1◆RB◆

[Difficulty: hard. Tests Vieta's formulas with algebraic manipulation requiring creative rewriting to avoid computing roots directly.]

Solution:

Step 1: State Vieta's formulas.

α+β=52,αβ=12\alpha + \beta = \frac{5}{2}, \quad \alpha\beta = \frac{1}{2}

Step 2: Simplify the target expression.

LB1RB◆◆LBα2+1RB+LB1RB◆◆LBβ2+1RB=LB(β2+1)+(α2+1)RB◆◆LB(α2+1)(β2+1)RB=LBα2+β2+2RB◆◆LBα2β2+α2+β2+1RB\frac◆LB◆1◆RB◆◆LB◆\alpha^2+1◆RB◆ + \frac◆LB◆1◆RB◆◆LB◆\beta^2+1◆RB◆ = \frac◆LB◆(\beta^2+1) + (\alpha^2+1)◆RB◆◆LB◆(\alpha^2+1)(\beta^2+1)◆RB◆ = \frac◆LB◆\alpha^2 + \beta^2 + 2◆RB◆◆LB◆\alpha^2\beta^2 + \alpha^2 + \beta^2 + 1◆RB◆

Step 3: Express α2+β2\alpha^2 + \beta^2 using Vieta's.

α2+β2=(α+β)22αβ=2541=214\alpha^2 + \beta^2 = (\alpha + \beta)^2 - 2\alpha\beta = \frac{25}{4} - 1 = \frac{21}{4}

Step 4: Compute α2β2\alpha^2\beta^2.

α2β2=(αβ)2=14\alpha^2\beta^2 = (\alpha\beta)^2 = \frac{1}{4}

Step 5: Substitute into the expression.

LB214+2RB◆◆LB14+214+1RB=LB214+84RB◆◆LB14+214+44RB=LB294RB◆◆LB264RB=2926\frac◆LB◆\frac{21}{4} + 2◆RB◆◆LB◆\frac{1}{4} + \frac{21}{4} + 1◆RB◆ = \frac◆LB◆\frac{21}{4} + \frac{8}{4}◆RB◆◆LB◆\frac{1}{4} + \frac{21}{4} + \frac{4}{4}◆RB◆ = \frac◆LB◆\frac{29}{4}◆RB◆◆LB◆\frac{26}{4}◆RB◆ = \frac{29}{26}


Integration Tests

Tests synthesis of quadratics with other topics. Requires combining concepts from multiple units.

IT-1: Quadratic-Defined Function with Implicit Properties (with Functions)

Question:

A quadratic function ff satisfies f(x+2)f(x)=4x+6f(x+2) - f(x) = 4x + 6 for all real xx, and f(0)=3f(0) = 3.

(a) Find the expression for f(x)f(x).

(b) The function gg is defined by g(x)=f(x)+kxg(x) = f(x) + kx for some constant kk. Given that g(x)=g(4x)g(x) = g(4-x) for all xx, find the value of kk and the axis of symmetry of gg.

(c) Find the range of gg on the domain [0,4][0, 4].

[Difficulty: hard. Combines quadratic properties, function symmetry, and range analysis.]

Solution:

(a) Let f(x)=ax2+bx+cf(x) = ax^2 + bx + c. Then:

f(x+2)=a(x+2)2+b(x+2)+c=ax2+4ax+4a+bx+2b+cf(x+2) = a(x+2)^2 + b(x+2) + c = ax^2 + 4ax + 4a + bx + 2b + c

f(x+2)f(x)=4ax+4a+2bf(x+2) - f(x) = 4ax + 4a + 2b

We are given f(x+2)f(x)=4x+6f(x+2) - f(x) = 4x + 6, so:

4ax+4a+2b=4x+64ax + 4a + 2b = 4x + 6

Equating coefficients:

  • 4a=4    a=14a = 4 \implies a = 1
  • 4a+2b=6    4+2b=6    b=14a + 2b = 6 \implies 4 + 2b = 6 \implies b = 1

Since f(0)=3f(0) = 3: c=3c = 3.

f(x)=x2+x+3f(x) = x^2 + x + 3

(b) g(x)=x2+x+3+kx=x2+(k+1)x+3g(x) = x^2 + x + 3 + kx = x^2 + (k+1)x + 3.

The condition g(x)=g(4x)g(x) = g(4-x) for all xx means gg is symmetric about x=2x = 2. For a quadratic, the axis of symmetry is at x=(k+1)2x = -\frac{(k+1)}{2}.

k+12=2    k+1=4    k=5-\frac{k+1}{2} = 2 \implies k + 1 = -4 \implies k = -5

So g(x)=x24x+3g(x) = x^2 - 4x + 3 with axis of symmetry x=2x = 2.

(c) On [0,4][0, 4], the vertex of gg is at x=2x = 2 (which lies in the domain).

g(2)=48+3=1g(2) = 4 - 8 + 3 = -1

At the endpoints: g(0)=3g(0) = 3 and g(4)=1616+3=3g(4) = 16 - 16 + 3 = 3.

The range of gg on [0,4][0, 4] is [1,3][-1, 3].


IT-2: Parabola-Circle Intersection (with Coordinate Geometry)

Question:

The parabola C1C_1 has equation y=x24x+1y = x^2 - 4x + 1 and the circle C2C_2 has equation x2+y26y+5=0x^2 + y^2 - 6y + 5 = 0.

(a) Show that the xx-coordinates of the points of intersection of C1C_1 and C2C_2 satisfy the equation x48x3+19x212x=0x^4 - 8x^3 + 19x^2 - 12x = 0.

(b) Hence find the coordinates of all points of intersection.

(c) The region RR is bounded by C1C_1 and C2C_2. Find the area of RR to 3 significant figures.

[Difficulty: hard. Combines algebraic manipulation of simultaneous equations with geometric interpretation.]

Solution:

(a) From C1C_1: y=x24x+1y = x^2 - 4x + 1. Substitute into C2C_2:

x2+(x24x+1)26(x24x+1)+5=0x^2 + (x^2 - 4x + 1)^2 - 6(x^2 - 4x + 1) + 5 = 0

Expand (x24x+1)2=x48x3+18x28x+1(x^2 - 4x + 1)^2 = x^4 - 8x^3 + 18x^2 - 8x + 1.

x2+x48x3+18x28x+16x2+24x6+5=0x^2 + x^4 - 8x^3 + 18x^2 - 8x + 1 - 6x^2 + 24x - 6 + 5 = 0

x48x3+(1+186)x2+(8+24)x+(16+5)=0x^4 - 8x^3 + (1 + 18 - 6)x^2 + (-8 + 24)x + (1 - 6 + 5) = 0

x48x3+13x2+16x=0x^4 - 8x^3 + 13x^2 + 16x = 0

This does not match the stated equation. Let me recheck. The circle is x2+y26y+5=0x^2 + y^2 - 6y + 5 = 0, which can be written as x2+(y3)2=4x^2 + (y-3)^2 = 4, a circle centred at (0,3)(0, 3) with radius 22.

Let me redo the substitution more carefully:

y2=(x24x+1)2=x4+16x2+18x3+2x28x=x48x3+18x28x+1y^2 = (x^2 - 4x + 1)^2 = x^4 + 16x^2 + 1 - 8x^3 + 2x^2 - 8x = x^4 - 8x^3 + 18x^2 - 8x + 1.

6y=6x2+24x6-6y = -6x^2 + 24x - 6.

x2+(x48x3+18x28x+1)+(6x2+24x6)+5=0x^2 + (x^4 - 8x^3 + 18x^2 - 8x + 1) + (-6x^2 + 24x - 6) + 5 = 0

x48x3+(1+186)x2+(8+24)x+(16+5)=0x^4 - 8x^3 + (1 + 18 - 6)x^2 + (-8 + 24)x + (1 - 6 + 5) = 0

x48x3+13x2+16x=0x^4 - 8x^3 + 13x^2 + 16x = 0

The problem statement's equation x48x3+19x212x=0x^4 - 8x^3 + 19x^2 - 12x = 0 does not match. This suggests the original problem may have different parameters. Let me proceed with the correct equation:

x48x3+13x2+16x=0x^4 - 8x^3 + 13x^2 + 16x = 0 x(x38x2+13x+16)=0x(x^3 - 8x^2 + 13x + 16) = 0

So x=0x = 0 is one solution. For x38x2+13x+16=0x^3 - 8x^2 + 13x + 16 = 0, trying x=1x = -1: 1813+16=60-1 - 8 - 13 + 16 = -6 \neq 0. Trying x=4x = 4: 64128+52+16=4064 - 128 + 52 + 16 = 4 \neq 0.

Let me re-examine with the stated problem equation x48x3+19x212x=0x^4 - 8x^3 + 19x^2 - 12x = 0:

x(x38x2+19x12)=0x(x^3 - 8x^2 + 19x - 12) = 0

Testing x=1x = 1: 18+1912=01 - 8 + 19 - 12 = 0. So (x1)(x-1) is a factor.

x38x2+19x12=(x1)(x27x+12)=(x1)(x3)(x4)x^3 - 8x^2 + 19x - 12 = (x-1)(x^2 - 7x + 12) = (x-1)(x-3)(x-4).

So x=0,1,3,4x = 0, 1, 3, 4. For the stated problem to work, let me use the circle x2+y26x4y+9=0x^2 + y^2 - 6x - 4y + 9 = 0 and verify. Actually, the stated equation works with the parabola y=x24x+1y = x^2 - 4x + 1 and the circle (x3)2+(y3)2=4(x-3)^2 + (y-3)^2 = 4, i.e. x26x+y26y+14=0x^2 - 6x + y^2 - 6y + 14 = 0.

Substituting y=x24x+1y = x^2 - 4x + 1:

y26y=(x24x+1)26(x24x+1)=x48x3+18x28x+16x2+24x6y^2 - 6y = (x^2-4x+1)^2 - 6(x^2-4x+1) = x^4 - 8x^3 + 18x^2 - 8x + 1 - 6x^2 + 24x - 6

=x48x3+12x2+16x5= x^4 - 8x^3 + 12x^2 + 16x - 5

x26x+x48x3+12x2+16x5+14=0x^2 - 6x + x^4 - 8x^3 + 12x^2 + 16x - 5 + 14 = 0

x48x3+13x2+10x+9=0x^4 - 8x^3 + 13x^2 + 10x + 9 = 0

That also doesn't work. Let me use the problem as stated and find the correct circle. With y=x24x+1y = x^2 - 4x + 1 and intersection xx-values of 0,1,3,40, 1, 3, 4:

  • x=0x = 0: y=1y = 1, point (0,1)(0, 1)
  • x=1x = 1: y=2y = -2, point (1,2)(1, -2)
  • x=3x = 3: y=2y = -2, point (3,2)(3, -2)
  • x=4x = 4: y=1y = 1, point (4,1)(4, 1)

These four points lie on the circle x2+y24x2y7=0x^2 + y^2 - 4x - 2y - 7 = 0 (verified: (0,1)(0,1): 0+1027=800+1-0-2-7=-8\neq 0).

Let me just correct the circle to match. The points (0,1),(1,2),(3,2),(4,1)(0,1), (1,-2), (3,-2), (4,1) have xx-centre at (0+4)/2=2(0+4)/2 = 2 and yy-centre at (1+(2))/2=1/2(1+(-2))/2 = -1/2 or from (1+3)/2(1+3)/2 in xx and (2+(2))/2=2(-2+(-2))/2 = -2 in yy.

Actually, the four points form a symmetric arrangement. The perpendicular bisector of (0,1)(0,1) and (4,1)(4,1) is x=2x = 2. The perpendicular bisector of (1,2)(1,-2) and (3,2)(3,-2) is x=2x = 2. The perpendicular bisector of (0,1)(0,1) and (1,2)(1,-2) has midpoint (1/2,1/2)(1/2, -1/2) and slope 33, so the perpendicular has slope 1/3-1/3: y+1/2=1/3(x1/2)y + 1/2 = -1/3(x - 1/2).

At x=2x = 2: y+1/2=1/33/2=1/2y + 1/2 = -1/3 \cdot 3/2 = -1/2, so y=1y = -1. Centre is (2,1)(2, -1).

Radius: distance from (2,1)(2,-1) to (0,1)=4+4=22(0,1) = \sqrt{4+4} = 2\sqrt{2}.

Circle: (x2)2+(y+1)2=8(x-2)^2 + (y+1)^2 = 8, i.e. x2+y24x+2y3=0x^2 + y^2 - 4x + 2y - 3 = 0.

Let me verify with the stated problem. The circle x2+y26y+5=0x^2 + y^2 - 6y + 5 = 0 does not match. I will adjust the problem to use the correct circle:

Corrected circle: x2+y24x+2y3=0x^2 + y^2 - 4x + 2y - 3 = 0.

(b) The four xx-values are x=0,1,3,4x = 0, 1, 3, 4 with corresponding yy-values from y=x24x+1y = x^2 - 4x + 1:

xxyy
01
1-2
3-2
41

Points of intersection: (0,1)(0, 1), (1,2)(1, -2), (3,2)(3, -2), (4,1)(4, 1).

(c) The region RR bounded by C1C_1 and C2C_2 between x=0x = 0 and x=4x = 4.

The area is given by:

A=04[(ycircle, upper)(yparabola)]dx+13[(yparabola)(ycircle, lower)]dxA = \int_0^4 \left[(y_{\text{circle, upper}}) - (y_{\text{parabola}})\right] \, dx + \int_1^3 \left[(y_{\text{parabola}}) - (y_{\text{circle, lower}})\right] \, dx

From the circle (y+1)2=8(x2)2(y+1)^2 = 8 - (x-2)^2: y=1±8(x2)2y = -1 \pm \sqrt{8 - (x-2)^2}.

The upper semicircle: yu=1+8(x2)2y_u = -1 + \sqrt{8-(x-2)^2}. The lower semicircle: yl=18(x2)2y_l = -1 - \sqrt{8-(x-2)^2}.

Between x=0x = 0 and x=4x = 4, the parabola lies below the upper semicircle and above the lower semicircle. The bounded region consists of two "lens-shaped" regions. Computing the exact area requires:

A=01(yuyp)dx+13(yuyl)dx+34(yuyp)dx13(ypyl)dxA = \int_0^1 (y_u - y_p) \, dx + \int_1^3 (y_u - y_l) \, dx + \int_3^4 (y_u - y_p) \, dx - \int_1^3 (y_p - y_l) \, dx

This simplifies to:

A=01(yuyp)dx+13(yuyp)dx+34(yuyp)dx=04(yuyp)dxA = \int_0^1 (y_u - y_p) \, dx + \int_1^3 (y_u - y_p) \, dx + \int_3^4 (y_u - y_p) \, dx = \int_0^4 (y_u - y_p) \, dx

=04[1+8(x2)2(x24x+1)]dx= \int_0^4 \left[-1 + \sqrt{8-(x-2)^2} - (x^2 - 4x + 1)\right] dx

=04[8(x2)2x2+4x2]dx= \int_0^4 \left[\sqrt{8-(x-2)^2} - x^2 + 4x - 2\right] dx

The integral 048(x2)2dx\int_0^4 \sqrt{8-(x-2)^2} \, dx is a semicircle of radius 222\sqrt{2}, giving area LBπ(22)2RB◆◆LB2RB=4π\frac◆LB◆\pi(2\sqrt{2})^2◆RB◆◆LB◆2◆RB◆ = 4\pi.

04(x2+4x2)dx=[x33+2x22x]04=643+328=643+24=72643=83\int_0^4 (-x^2 + 4x - 2) \, dx = \left[-\frac{x^3}{3} + 2x^2 - 2x\right]_0^4 = -\frac{64}{3} + 32 - 8 = -\frac{64}{3} + 24 = \frac{72 - 64}{3} = \frac{8}{3}

A=4π+83=LB12π+8RB◆◆LB3RB15.6 (3 s.f.)A = 4\pi + \frac{8}{3} = \frac◆LB◆12\pi + 8◆RB◆◆LB◆3◆RB◆ \approx 15.6 \text{ (3 s.f.)}


IT-3: Optimisation with Calculus (with Differentiation)

Question:

A rectangular enclosure is to be built against an existing straight wall. Three sides of the enclosure are to be made of fencing, and the fourth side is the wall. The total length of fencing available is 60 metres.

(a) Show that the area AA of the enclosure can be written as A=30x32x2A = 30x - \frac{3}{2}x^2 where xx is the length of the side perpendicular to the wall.

(b) A farmer decides that the enclosure must also contain a rectangular internal partition parallel to the wall, dividing the enclosure into two equal smaller rectangles. The partition uses fencing of the same type. Find the dimensions of the enclosure that maximise the total area.

(c) The fencing costs 20permetre,butthereisadiscountof20 per metre, but there is a discount of 5%$ on the total cost if the enclosure is square (when viewed with the wall as one side). Determine which design (with or without partition) gives the larger net area per pound spent, and justify your answer.

[Difficulty: hard. Combines quadratic optimisation with practical reasoning and comparative analysis.]

Solution:

(a) Let xx be the length perpendicular to the wall and yy be the length parallel to the wall.

Fencing used: 2x+y=602x + y = 60, so y=602xy = 60 - 2x.

A=xy=x(602x)=60x2x2A = xy = x(60 - 2x) = 60x - 2x^2

The stated formula A=30x32x2A = 30x - \frac{3}{2}x^2 does not match. The correct expression is A=60x2x2A = 60x - 2x^2.

Let me check: if "three sides" means two perpendicular and one parallel, then 2x+y=602x + y = 60 and A=x(602x)=60x2x2A = x(60-2x) = 60x - 2x^2. The stated formula with coefficient 3/23/2 would require a different setup.

If instead the fencing forms 2x+y=602x + y = 60 where the coefficient of xx accounts for the partition: with a partition parallel to the wall, we need 3x+2y=603x + 2y = 60 (three perpendicular sections and two parallel sections), giving y=3032xy = 30 - \frac{3}{2}x and A=x(3032x)=30x32x2A = x(30 - \frac{3}{2}x) = 30x - \frac{3}{2}x^2. This is for part (b).

I will re-interpret part (a) as follows: the area is A=60x2x2A = 60x - 2x^2 without the partition, and I will correct the problem statement. However, since the question states A=30x32x2A = 30x - \frac{3}{2}x^2, this applies to part (b)'s setup. Let me proceed with the corrected interpretation.

(a) Corrected: Without partition: A=60x2x2A = 60x - 2x^2. Maximum at x=15x = 15, y=30y = 30, Amax=450A_{\max} = 450 m2^2.

(b) With partition parallel to the wall, the fencing layout is: 3 lengths of xx (two outer sides + one partition) and 2 lengths of yy (front and back).

3x+2y=60    y=3032x3x + 2y = 60 \implies y = 30 - \frac{3}{2}x

A=xy=x(3032x)=30x32x2A = xy = x\left(30 - \frac{3}{2}x\right) = 30x - \frac{3}{2}x^2

This is a downward-opening quadratic with vertex at:

x=LB30RB◆◆LB2(3/2)RB=303=10x = \frac◆LB◆-30◆RB◆◆LB◆2 \cdot (-3/2)◆RB◆ = \frac{30}{3} = 10

At x=10x = 10: y=3015=15y = 30 - 15 = 15. Amax=10×15=150A_{\max} = 10 \times 15 = 150 m2^2.

(c) Without partition: Area = 450 m2^2, fencing = 60 m, cost = £1200\pounds 1200 (no discount since not square), area per pound =450/1200=0.375= 450/1200 = 0.375 m2^2/\pounds.

With partition: Area = 150 m2^2, fencing = 60 m, cost = £1200\pounds 1200, area per pound =150/1200=0.125= 150/1200 = 0.125 m2^2/\pounds.

The design without partition gives significantly better area per pound spent (0.3750.375 vs 0.1250.125 m2^2/\pounds).