Count the evens

An even integer N N can be written in the form N = 2 k N=2k , where k k is an integer. How many even integers are there in the range 11 x 11 -11 \leq x \leq 11 ?


The answer is 11.

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.

6 solutions

Listing integers k gives {0,1,2,3,4,5,6 etc.}

Therefore, 2k gives {0,2,4,6,8,10,12 etc.}

These integers are all even and six of them are less than 11.

However, there are also the negative even integers {-2,-4,-6,-8,-10,-12 etc.} and so there are five more solutions here (0 cannot be counted twice).

This gives 5 + 6 5 + 6 or 11 \boxed{11} solutions.

How can 0 be an even integer?

Daniel Alfaro - 7 years, 6 months ago

Log in to reply

Every even integer n n can 'always' be expressed in the form n = 2 k n=2k for some integer k k . And, 0 = 2 × 0 0=2 \times 0 . So, 0 is an even integer.

Kou$htav Chakrabarty - 7 years, 6 months ago

Log in to reply

But then k=n which is not what we stated.

Daniel Alfaro - 7 years, 6 months ago

Log in to reply

@Daniel Alfaro So what if k = n k=n ?

Refer to the definition, for k = 0 k=0 , we have 0 = 2 × 0 0 = 2 \times 0 , hence 0 is an even integer.

Calvin Lin Staff - 7 years, 6 months ago

Even integers between -11 and 11 are : 10 [ 2 × ( 5 ) ] -10[ 2 \times (-5) ] 8 [ 2 × ( 4 ) ] -8 [ 2 \times (-4) ] 6 [ 2 × ( 3 ) ] -6 [ 2 \times (-3) ] 4 [ 2 × ( 2 ) ] -4 [ 2 \times (-2) ] 2 [ 2 × ( 1 ) ] -2 [ 2 \times (-1) ] 0 [ 2 × 0 ] 0 [ 2 \times 0 ] 2 [ 2 × 1 ] 2 [ 2 \times 1 ] 4 [ 2 × 2 ] 4 [ 2 \times 2 ] 6 [ 2 × 3 ] 6 [ 2 \times 3 ] 8 [ 2 × 4 ] 8 [ 2 \times 4 ] 10 [ 2 × 5 ] 10 [ 2 \times 5 ]

Oops! Forgot the main answer in a hurry! So, the number of even integers between -11 and 11 is 11 \boxed{11}

Kou$htav Chakrabarty - 7 years, 6 months ago

Hey, I got an idea after solving this: The number of even numbers between -n and n is: *1. (n - 1) iff n is even * *2. n iff n is odd *

The number of odd numbers between -n and n is: *1. n iff n is even * *2. (n + 1) iff n is odd *

Kou$htav Chakrabarty - 7 years, 6 months ago
Adam Zaim
Nov 19, 2013

Between number -11 and 11, there are 11 even numbers.

yeah...........!

Priyank Shah - 7 years, 6 months ago

The numbers are -10,-8,-6,-4,-2,0,2,4,6,8,10

In this problem zero is counted as even integers ,it is true

deva raj - 7 years, 3 months ago
Maggie Wu
Nov 18, 2013

N must be an even number because the 2 in 2k makes in even. So from -11 to 11, you ask yourself, How many even numbers are there? The answer is -10, -8, -6, -4, -2, 0, 2, 4, 6, 8 ,10. Therefore the answer is 11.

N=2K then N=22......so that 22=2k ......22/2=k......Answer is K=11

Danish Habib - 7 years, 6 months ago
Krishan Kumar
Nov 24, 2013

include<iostream>

using namespace std; int main() { int j; int n=2*j; int count++; for(int i=-11;i<11;i++) { if(n%2==0 && i>0) count++; } cout<<count; }

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...