Advertisement
KipIngram

Can't Place An Equilateral Triangle On A Square Grid

Sep 21st, 2023 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. Let the grid points be the integer coordinates in the plane. Place one triangle corner at the origin (x0=y0=0).
  2. We can choose the triangle side length L and the angle of its baseline a at will.
  3.  
  4. Assume we have successfully placed the triangle with all three corners on grid points, using some side
  5. length L and angle a. Then, for the second corner,
  6.  
  7. x1 = L*cos(a) = I1 (integer)
  8. y1 = L*sin(a) = I2 (integer)
  9.  
  10. and I1 and I2 must be integers. Then
  11.  
  12. tan(a) = I2/I1 = R1 (rational)
  13.  
  14. Similarly, the third corner is on some other grid point. That point lies at angle a+60, and we have
  15.  
  16. x2 = L*cos(a+60) = I3 (integer)
  17. y2 = L*sin(a+60) = I4 (integer)
  18.  
  19. and
  20.  
  21. tan(a+60) = I4/I3 = R2 (rational)
  22.  
  23. By trig identity for tangent, sum of angles:
  24.  
  25. tan(a+60) = [tan(a)+tan(60)]/[1-tan(a)*tan(60)]
  26.  
  27. Now substitute from above:
  28.  
  29. R2 = [R1 + tan(60)]/[1-R1*tan(60)]
  30.  
  31. Isolate tan(60):
  32.  
  33. R2*[1-R1*tan(60)] = R1 + tan(60)
  34.  
  35. R2 - R1*R2*tan(60) = R1 + tan(60)
  36.  
  37. [1+R1*R2]*tan(60) = R2-R1
  38.  
  39. tan(60) = [R2-R1]/[1+R1*R2] (rational)
  40.  
  41. But tan(60)=sqrt(3), which is irrational. Conflict - the third triangle corner cannot lie on a grid point.
  42.  
  43. Q.E.D.
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement