Teaser 2444: [Pat’s lawn]
From The Sunday Times, 26th July 2009 [link]
Pat’s lawn is a 600 sq metre rectangle with a tree at each corner. Working around the perimeter, these are apple, beech, cherry and damson. Pat has marked four straight lines on the grass: one from the apple to a point 75% of the way from the beech to the cherry; the second from the beech to 75% of the way from the cherry to the damson; the third from the cherry to 75% of the way from the damson to the apple; the fourth from the damson to 75% of the way from the apple to the beech. He plans to turn the area enclosed by the four lines into a rose garden.
What will the rose garden’s area be?
This puzzle was originally published with no title.
[teaser2444]





Jim Randell 7:15 am on 24 April 2026 Permalink |
This is similar to Routh’s Theorem but in a rectangle instead of a triangle. (See: Teaser 3021).
If the lines are drawn to a fraction f along the appropriate side, then the area of the central quadrilateral is (as a fraction of the overall parallelogram):
Specifically if f is represented as a fraction a/b we get:
And in our case a = 3, b = 4, hence:
from enigma import (Rational, sq, printf) Q = Rational() # fraction along the sides f = Q(75, 100) printf("[f = {f}]") # calculate the area of the central quadrilateral A = Q(sq(1 - f), 1 + sq(f)) printf("[A = {A}]") # output solution (area of central region) R = A * 600 printf("area = {R} sq m")Solution: The area of the rose garden is 24 sq m.
LikeLike