Find the smallest integer n such that 1 + 2 + 3 + ... + n > 450.
there is a formula for left hand side : 1 + 2 + 3 +.... + n = n(n+1)/2
plug that in the given inequality, it becomes to figure out wat n cud be..
n(n+1)/2 > 450 n(n+1) > 900
so product two consecutive numbers should give u > 450 do trial and error
is 29*30 > 900 ? is 30*31 > 900 ? yup corrected :P
Where did you get the formula?
@ganeshie8 I got it. Thank you!
in general ... let A = 1 + 2 + 3 + ... + n-2 + n-1 + n can be doubled and added together in a special way :) A = 1 + 2 + 3 + ... + n-2 + n-1 + n +A = n + n-1 + n-2 + ... + 3 + 2 + 1 -------------------------------------------- 2A = n+1 + n+1 + n+1 + ... + n+1 + n+1 + n+1 so we have 2A = (n+1), n times. A = n(n+1)/2
Join our real-time social learning platform and learn together with your friends!