A rabbit lives on a triangular piece of land which is in the shape of an isosceles right triangle, with vertices ( 0 , 0 ) , ( 0 , n ) , ( n , 0 ) .
On Christmas day, he organizes a party for his friends, and wanted to dress up in a Santa suit, stand at the origin and throw gifts at them. He wanted each of his friends to stand at a point within the island (not on the border) that has integral coordinates. He found that he can invite a maximum of 210 of his friends.
Using the information above, find the area of his land in unit squares.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice solution. My solution here is almost the same but i used the sum of arithmetic sequence. S = (n/2){2a + (n-1)d S = 210; a = 1; d = 1 and i used n = x-2 by substitution x = -19 and x = 22 since no negative values for population we will use 22. After getting the value of x we will get the area of the triangular lot A = (x^2)/2...... A = 242 square unit
Nice solution. It can also be done with Pick's Theorem .
Imagine a square with side equals the length of the side of the island. For the sake of convenience the length will be measured by number of integer points The number of integer point inside that square will be (n-2)^2, notice that the hypotenuse takes up n-2 points and divide the square into two parts with equal number of points Thus we have the equation (n-2)^2-(n-2) = 210, solving for n taken into account that n is positive yields n = 23 Thus the side length of the triangle is 22, so S = 22*22/2 = 242
Here is my somewhat complicated approach
Let L be the length of the perpendicular sides of that triangle.
Now as we can see the sum of x and y coordinates of the given situation should add up being less than or equal to L-2
x + y ≤ L − 2
By removing the equality we get
x + y < L − 3
Now adding a fake variable λ
to remove the sign of inequlity
It gives
x + y + λ = L − 3
This implies total number of combination of x and y becomes ( 2 L − 3 + 2 ) = 2 1 0
From here we get L = 2 2
This implies area = 2 2 × 2 2 / 2 = 2 4 2
210 is 20th triangle number, so triangle muddy be 22 long.
As an aside, the wording of the question is weird. Rather than adding the note at the end, include in the question that guests can't stand on the beach.
Problem Loading...
Note Loading...
Set Loading...
The pattern is the triangular numbers, think about lattice points on a graph,.
What we're effectively doing by removing people from the boundaries is shortening the sidelength by 2. Because the people will be in the shape of an isosceles triangle in the bigger isoceles triangle.
We have the formula for triangular numbers to be 2 n ( n + 1 )
Thus after shortening the sidelengths we have 2 ( n − 1 ) ( n − 2 )
Solving
2 1 0 = 2 ( n − 1 ) ( n − 2 )
0 = n 2 − 3 n − 4 1 8
0 = ( n − 2 2 ) ( n + 1 9 )
Since n must be positive, -19 is extraneous.
Thus we have the sidelength of the triangle to be 22 so the area is 2 2 2 / 2 = 2 4 2