ISI 2024 P3
Source: college entrance
May 12, 2024
geometryarea of a triangleISI 2024
Problem Statement
Let be a quadrilateral with all the internal angles . Squares are drawn on each side as shown in the picture below. Let denote the areas of the shaded triangles as shown. Prove that
[asy]
//made from sweat and hardwork by SatisfiedMagma
import olympiad;
import geometry;size(250);pair A = (-3,0);
pair B = (0,2);
pair C = (5.88,0.44);
pair D = (0.96, -1.86);pair H = B + rotate(90)*(C-B);
pair G = C + rotate(270)*(B-C);pair J = C + rotate(90)*(D-C);
pair I = D + rotate(270)*(C-D);pair L = D + rotate(90)*(A-D);
pair K = A + rotate(270)*(D-A);pair F = A + rotate(90)*(B-A);
pair E = B + rotate(270)*(A-B);
draw(B--H--G--C--B, blue);
draw(C--J--I--D--C, red);
draw(B--E--F--A--B, orange);
draw(D--L--K--A--D, magenta);
draw(L--I, fuchsia); draw(J--G, fuchsia); draw(E--H, fuchsia); draw(F--K, fuchsia);pen lightFuchsia = deepgreen + 0.5*white;fill(D--L--I--cycle, lightFuchsia);
fill(A--K--F--cycle, lightFuchsia);
fill(E--B--H--cycle, lightFuchsia);
fill(C--J--G--cycle, lightFuchsia);label("", (E+B+H)/3);
label("", (D+L+I)/3);
label("", (C+G+J)/3);
label("", (A+F+K)/3);dot("", A, S);
dot("", B, S);
dot("", C, S);
dot("", D, N);
dot("", H, dir(H));
dot("", G, dir(G));
dot("", J, dir(J));
dot("", I, dir(I));
dot("", L, dir(L));
dot("", K, dir(K));
dot("", F, dir(F));
dot("", E, dir(E));
[/asy]