answersLogoWhite

0


Best Answer

It is the same as: 3*(a+b) or simply 3(a+b)

User Avatar

Wiki User

6y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you write Three times the sum of a and b?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is three times the sum of a and b?

3*(a + b) or 3a + 3b


What is five times the sum of a and b decreased by three times b?

5a plus 2b


What is the algebric expression for Three times the sum of a and b increased by a?

3(a+b)+a


How do you write 3 times the sum of b and 5?

3(b5)


How do you write the sum of b and 8?

The sum of b and 8 would be written b+8 or 8+b(commutative property of addition)


The sum of 3 times a and b?

3a+b


Write a c program that multiplies two numbers by repeated subtraction?

int mul (int a, int b) { int sum= 0; for (; b>0; --b) sum -= -a; for (; b<0; ++b) sum -= a; return sum; }


The sum of b and 11?

You remember that 'sum' means addition so that's b+11


How do you write one sixth of the sum of a and b in algebraic expression?

(a+b)/6


What is the sum ofThree times the sum of a and b increased by a?

3(a + b) + a = 3a + 3b + a = 4a + 3b


How do you write four times the sum of 2a and b increased by twice the sum of 6a and 2b?

4(2a+b) + 2(6a+2b) Working this out it is: 8a + 4b + 12a + 4b = 20a + 8b or 4(5a+2b).


Write a programme to find the sum and product of three numbers?

//sum and product of 3 nos #include #include void main() { int a,b,c; printf("enter the 3 nos"); scanf("%d%d%d",&a,&b,&c); printf("sum of 3 nos",a+b+c); printf("product of 3 nos",a*b*c); getch(); }