answersLogoWhite

0

There is not enough information to determine the answer.

For example, 6 + 2 = 8 = 5 + 3

But 6 - 2 = 4 while 5 - 3 = 2.

User Avatar

Wiki User

7y ago

What else can I help you with?

Related Questions

What is a distributave property?

The distributive property states that for any real numbers a, b, and c, the product of a and the sum (or difference) of b and c is equal to the sum (or difference) of the products of a and b and a and c. In mathematical terms, it can be written as a(b + c) = ab + ac or a(b - c) = ab - ac, where a, b, and c are real numbers. This property is fundamental in algebraic operations and simplifying expressions.


What is relationship between exterior angles and opposite interior angles of a triangle?

The exterior angle of a triangle is equal to the sum of the two opposite interior angles. So if a triangle had points A, B and C: The exterior angle at B would equal the sum of interior angles at A and C. Similarly, the exterior angle at C would equal the sum of interior angles at A and B And the the exterior angle at A would equal the sum of interior angles at C and B.


What does 'equal to the sum' mean?

"the same as the others added together" For example: a=b+c+d a is equal to the sum of b plus c plus d. 9=2+3+4


What is the lower number of a subtraction problem called?

In any subtraction sum such as a - b = c, the a is the minuend, the b the subtrahend, and the c the difference.


What is the difference between the commutative property and the associative property?

Commutative: a + b = b + a a × b = b × a Associative: (a + b) + c = a + (b + c) (a × b) × c = a × (b × c) Commutative states that the sum or product remains the same no matter the order of the factors. Associative states that the sum or product remains the same no matter the grouping of the factors.


What are the 2 numbers that equal a sum?

In any sum a + b = c, the numbers represented by a and b are called addends or summands. Occasionally, the number represented by a is called an augend.


What is the sum Of?

The sum of is the total of everything being summed; the sum total. Thus the sum of a, b and c is therefore a + b + c.


How do you draw a flowchart to get the sum of two numbers?

Starts Input a,b Result=(a-b)*(a-b) Print"square of difference=",result


What is the meaning of associative law in mathematics?

The Associative Property of Addition and Multiplication states that the sum or product will be the same no matter the grouping of the addends or factors. Associative: (a + b) + c = a + (b + c) (a × b) × c = a × (b × c)


What is a over c plus b over c?

You add 2 fractions with the same denominator [c], so the sum is the sum of the numerators divided by the denominator: a/c + b/c = (a+b)/c


What is the difference between equals equals and equals in C programming?

a = b changes the value of a and makes it the same as the value of b. a == b does not change the values of a or b. It is an expression that is equal to 1 if a and b are the same or to 0 if a and b are different. For example: if ( a == b) { c = d;} means if a and b are the same, then set c equal to d. C does let you write the following: if ( a = b) { c = d;} This sets a equal to the value of b, and then if the new value of a is non-zero, it sets c equal to d. You can do this, but if you see a single equal sign in an "if" condition, that usually (but not always) is a mistake.


How do you Write a program in c to calculate the sum of two integers?

/*use "c-free" compiler*/ #include <stdio.h> main() { int a,b,c; printf("enter the value of a & b"); scanf("%d%d",&a,&b); c=a+b; printf("sum of the two numbers is a+b- %d",c); getch(); }