To solve this you need more information about the relationship between a, b and c.
Chat with our AI personalities
No.Neither are commutative: a - b does not equal b - a, and a/b does not equal b/a.Neither is associative: (a - b) - c does not equal a - (b - c), and (a/b)/c does not equal a/(b/c).Examples of these are:4 - 2 does not equal 2 - 4.1/3 does not equal 3/1.(6 - 5) - 1 does not equal 6 - (5 - 1).(10/2)/2 does not equal 10/(2/2).
It's basically the same concept. Like subtraction is the opposite of addition, and division is the opposite of multiplication. Just the reverse. Kind of hard to explain.... ask your teacher!
A+c= 2a+b
Yes, because a^2 + b^2 = c^2, where a and b are legs and c is the hypotenuse. Therefore, if a and b are equal, so will c.
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.