I am working on problems in the chapter "Applications of Derivatives". I encountered the following problem:
Question:
Four points A,B,C, and D lie in that order on the parabola $y=ax^2+bx+c$. The coordinates of A,B, and D are $(-2,3)$,$(-1,1)$, and $(2,7)$ respectively. The coordinates of C for which the area of the quadrilateral ABCL is maximum is:
(A) $(1/2,7/4)$
(B) $(1/2,-7/4)$
(C) $(-1/2,7/4)$
(D) $(-1/2,-7/4)$
[Correct Answer : Option (A)]
My Approach:
Introduction:
I found the equation of the parabola using the given coordinates. Then computed the area of the quadrilateral by considering an arbitrary value for point C. Then I found the coordinates of C by maximizing the value of A by using the concept of maxima. What I am looking for is an alternate proof or a property which relates the coordinates of third vertex of a quadrilateral when three points are fixed under certain constraints, to maximize the area.
We have been given the coordinates A$(-2,3)$,B$(-1,1)$ and D$(2,7)$.
Since these points lie on the given parabola $y=ax^2+bx+c$, on substituting the coordinates of A,B and D we get the following linear equations in variables $a,b,$ and $c$:
$4a-2b+c=3$
$a-b+c=1$
$4a+2b+c=7$
On solving these three equations, I got $a=1,b=1,$ and $c=1$. So the equation of the parabola is $y=x^2+x+1$.
In the following graph, the points A,B and D are fixed, whereas point C is a variable point on the parabola. We need to find the coordinates of point C such that the area of the quadrilateral is maximum.
In coordinate geometry, I came across the following formula to compute the area of a $n$ sided polygon when the coordinates are given:
Area A $= \frac 1 2 \left( \left| {\begin{array}{cc}x_1 & x_2 \\y_1 & y_2 \\ \end{array} } \right|+\left| {\begin{array}{cc}x_2 & x_3 \\y_2 & y_3 \\ \end{array} } \right|+\left| {\begin{array}{cc}x_3 & x_4 \\y_3 & y_4 \\ \end{array} } \right|+ \dots +\left| {\begin{array}{cc}x_{n-1} & x_n \\y_{n-1} & y_n \\ \end{array} } \right|+\left| {\begin{array}{cc}x_n & x_1 \\y_n & y_1 \\ \end{array} } \right| \right)$
where $(x_1,y_1),(x_2,y_2),(x_3,y_3),\dots ,(x_{n-1},y_{n-1}),(x_n,y_n)$ are coordinates of the $n$ vertices of the $n$ sided polygon taken in order. Here |.| denotes determinant of the matrix.
Now in the given question we are supposed to find the maximum area of a quadrilateral (4 sided polygon). So using the above formula, we get the following:
Area A $= \frac 1 2 \left( \left| {\begin{array}{cc}x_1 & x_2 \\y_1 & y_2 \\ \end{array} } \right|+\left| {\begin{array}{cc}x_2 & x_3 \\y_2 & y_3 \\ \end{array} } \right|+\left| {\begin{array}{cc}x_3 & x_4 \\y_3 & y_4 \\ \end{array} } \right|+\left| {\begin{array}{cc}x_4 & x_1 \\y_4 & y_1 \\ \end{array} } \right| \right)$
where where $(x_1,y_1),(x_2,y_2),(x_3,y_3),$ and $(x_4,y_4)$ are the coordinates of points A,B,C, and D respectively.
Now let the $x$-coordinate of point C be $h$. So its $y$-coordinate (from the equation of parabola) is $h^2+h+1$. So coordinates of point C be represented as $(h^2+h+1)$.
After substituting the values of the coordinates in the equation for area, I obtained the following equation:
Area A$=\frac 1 2 -3h^2+3h+18$
Area A attains the maximum value at $h=1/2$.
Hence the coordinates of point C is $(1/2,7/4)$ - option (A). My answer is correct.
Doubt:
Is there any other formal way of solving this problem? Is there any property for choosing the fourth vertex of the quadrilateral when three vertices are given, in order to get the maximum area under given constraints?
Thank you in advance.


Its not a completely different approach but just a way to reduce the matrix computations.
$1^{st}$ step - Get the parabola $y(x) = x^2 + x + 1$ which you got it with the points A,B,D.
Now, if you join BD, the total area you interested in maximizing would be $Area(ABD)+Area(BCD)$ triangles. As area cannot be negative, you need to maximize just Area(BCD) as points A,B,D are known and so is the value of Area(ABD).
Therefore computing the $Area(BCD)$ you can directly use the area of triangle formula =$(1/2)det(A)$ where $A =$ $\left[ \begin{matrix} h & k & 1\\ -1 & 1 & 1 \\ 2 & 7 & 1\\ \end{matrix}\right]$
This is a simple determinant which we get as $Area(BCD) = (1/2)(3k-6h-9)$. We need to maximize this following the constraint $k=h^2 + h + 1$. Just substitute for $k$ and differentiate with respect to $h$, we get $h=1/2$, and so $k=7/4$.