Find (2) consecutive numbers whose sum is 25.

Lorettaxxx

New member
Joined
Nov 6, 2007
Messages
13
Find (2) consecutive numbers whose sum is 25.


How would I solve that??
my teacher says I have to use a let statement. :(
 
Re: I NEED HELP

Lorettaxxx said:
Find (2) consecutive numbers whose sum is 25.


How would I solve that??
my teacher says I have to use a let statement.

Let the first number = x

Then what is the next (consecutive) number? - x+1

Now you know, you need to find

consecutive numbers whose sum is 25

then

x + x+1 = 25

Now solve for x from above.
 
Find (2) consecutive numbers whose sum is 25.
How would I solve that??
my teacher says I have to use a let statement.

Alternatively:
25/2 = 12.5 making the 2 numbers 12 and 13.
 
Top