If the sum of the even integers between 1 and k, inclusive, is equal to 2k, what is the value of k?
The sum of the first 'n' even integers is .
2 + 4 + 6 +....+ 2n = n(n + 1)
in this case, k = 2n, n=k2, so the sum of the even integers between 2 and k inclusive is k2(k2+1)=2k
Solving for k:
k24+k2=2k
k2+2k=8k
k2−6k=0
k(k – 6) = 0
K = 0 (which can't be because k > 2...)
k = 6