Strange formula for area of a convex polygon

Denote $A_i=(0,b_i)$. It is a point on $\ell_i=\{(x,y):y=k_ix+b_i\}$, and let $$P_i=\ell_i\cap \ell_{i+1}=\left(\frac{b_{i+1}-b_i}{k_i-k_{i+1}},\frac{k_ib_{i+1}-k_{i+1}b_i}{k_i-k_{i+1}}\right)$$ be the vertex of the polygon. The (properly oriented) area of $\triangle A_iP_iA_{i+1}$ equals $\frac{(b_i-b_{i+1})^2}{2(k_{i+1}-k_{i})}$, and the sum of such oriented areas is the oriented area of the polygon.


Fedor's derivation is very slick and elegant - surely the best way to guess the formula if you didn't know it already.

It does however require additional justification to show that the oriented areas for all possible line positions will cancel appropriately to get the polygon area, especially if you are aiming to prove the formula for non-convex shapes as well (not asked by the OP but it does apply in this case as well.)

If you want to avoid this and derive it from a standard area formula for polygons you can use Fedor's points of intersection $P_i$ and $P_{i+1}$ and plug them in to obtain:

\begin{equation} \begin{aligned} &\frac{1}{2}\sum_{i=1}^n \det|P_iP_{i+1}|\\ &=\frac{1}{2}\sum_{i=1}^n\frac{(b_{i+1}-b_i)(k_{i+1}b_{i+2}-k_{i+2}b_{i+1})-(b_{i+2}-b_{i+1})(k_{i}b_{i+1}-k_{i+1}b_{i})} {(k_i-k_{i+1})(k_{i+1}-k_{i+2})}\\ &=\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}^2(k_i-k_{i+2})-b_{i}b_{i+1}(k_{i+1}-k_{i+2})-b_{i+1}b_{i+2}(k_i-k_{i+1})} {(k_i-k_{i+1})(k_{i+1}-k_{i+2})}\\ &=\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}^2(k_i-k_{i+1}+k_{i+1}-k_{i+2})} {(k_i-k_{i+1})(k_{i+1}-k_{i+2})}-\frac{1}{2}\sum_{i=1}^n\frac{b_{i}b_{i+1}}{(k_i-k_{i+1})}-\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}b_{i+2}}{(k_{i+1}-k_{i+2})}\\ &=\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}^2} {(k_i-k_{i+1})} +\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}^2} {(k_{i+1}-k_{i+2})} -\frac{1}{2}\sum_{i=1}^n\frac{b_{i}b_{i+1}}{(k_i-k_{i+1})} -\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}b_{i+2}}{(k_{i+1}-k_{i+2})}\\ &=\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}^2} {(k_i-k_{i+1})} +\frac{1}{2}\sum_{i=1}^n\frac{b_{i}^2} {(k_{i}-k_{i+1})} -\frac{1}{2}\sum_{i=1}^n\frac{b_{i}b_{i+1}}{(k_i-k_{i+1})} -\frac{1}{2}\sum_{i=1}^n\frac{b_{i}b_{i+1}}{(k_{i}-k_{i+1})}\\ &=\frac{1}{2}\sum_{i=1}^n\frac{b_{i+1}^2+b_{i}^2-2b_{i}b_{i+1}} {(k_i-k_{i+1})}\\ &=\frac{1}{2}\sum_{i=1}^n\frac{(b_{i+1}-b_{i})^2} {(k_i-k_{i+1})} \end{aligned} \end{equation}

Update: Actually I just realised that Fedor's method looks to be the exact dual of the method behind the formula I used:

"Sum the areas to a point between two points meeting at consecutive pairs of polygon sides" (The method I used)

$\Updownarrow$ "point-line duality"

"Sum the areas to a line between two lines joining consecutive pairs of polygon points" (Fedor's method)

So this might be a good way to justify it.