What is the largest triangle number that is less than 1000?
Details and assumptions
A triangle number has the form for some positive integer .
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.
According to the question, n(n+1)/2<1000=> n^2+n<2000=> n^2+n-2000<0 On solving the quadratic equation we get: n= -91/2 or 89/2. But, negative answer is not possible, therefore -91/2 is rejected and 89/2 or 44.5 is accepted. However 'n' cannot be a fractional number, hence the value of 'n' is 44. (It is not 45 since it will make the triangle number larger than 1000). Therefore, taking n = 45, the largest triangle number that is less than 1000 is 990.