answersLogoWhite

0


Best Answer

n + 2 = 10

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you write the sum of a number and 2 is 10 in equation?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is an equation for the sum of a number and 10?

x + 10


The sum of a number and -6 is 4?

The sum of 10 plus -6 is equal to 4. The equation would read 10+-6=4.


How can you write a horizontal number sentence that has a sum of 17?

3 + 4 +10 = 17 is a number sentence that has a sum of 17. 4 + 13 = 17 is also a number sentence that has a sum of 17. Here are some more number sentences: 10 + 10 - 3 = 17 21 - 4 = 17 There are many ways to write a number sentence that has a sum of 17. What other ways can you think of?


Write a variable expression the product of thirteen and the sum of a number and ten?

the product of 8 and the sum of 10 and -7


How write algorithm for finding the sum first ten even number?

Sum = 0 For N = 1 to 10 Sum = Sum + 2*N Next N Print Sum


How do you write the sum of 6 and a number divided by 10 in algegrsic expresssion?

0.6


Write an expression for the sum of a number and ten less than thirteen?

x + (13-10)


What is the solution to this The product of a number and 3 is twice the sum of that number and 5?

Let's call the number "x". The given equation can be translated as: x * 3 = 2 * (x + 5). Simplifying the equation, we have: 3x = 2x + 10. Subtracting 2x from both sides gives: x = 10. So the solution to the equation is x = 10.


How do you write an expression for the sum of a number and ten less than thirteen?

x+10>13 it wouldn't be x+10-13 ??


Write a C program to reverse the digits of a number?

/*Reverse the digits of a number,Gankidi*/ #include<stdio.h> void main(void) { int num,sum=0,i,rem; printf("Enter a number"); scanf("%d",&num); while(num>0) { rem=num%10; num=num/10; sum=sum+(rem*10); } printf("the reverse number is %d",sum); }


It is greater than 30 and less than 40 if you add the digits the sum is 10 write the number?

37


How do you write an algoritm that calculates sum of all even numbers ranging from 0-100?

100