from another wikianswers page: say that 'a' is rational, and that 'b' is irrational. assume that a + b equals a rational number, called c. so a + b = c subtract a from both sides. you get b = c - a. but c - a is a rational number subtracted from a rational number, which should equal another rational number. However, b is an irrational number in our equation, so our assumption that a + b equals a rational number must be wrong.
This is the common form of the Pythagorean Theorem. It describes the relationship between the two legs of a right triangle and the hypotenuse.
49 + c units
a + b + c = 180 b = 3a c = 5a Substituting the values of b and c into the first equation. a + 3a + 5a = 180 or 9a = 180 so that a = 20 then b = 3a = 3*20 = 60 and c = 5a = 5*20 = 100
Since a squared plus b squared equals c squared, that is the same as c equals the square root of a squared plus b squared. This can be taken into squaring and square roots to infinity and still equal c, as long as there is the same number of squaring and square roots in the problem. Since this question asks for a and b squared three times, and also three square roots of a and b both, they equal c. Basically, they cancel each other out.
2a. (a, b and c are all equal.)
Yes.
They all equal each other. a = b = c = d = e e = a e = b e = c e = d e = e
a=24 b=16 c=18
A+c= 2a+b
2
Because there is no way to define the divisors, the equations cannot be evaluated.
It equals b times c.
the answer is a
No. Suppose A = {1,2}, B = {1,2,3,4,5,6} and C = {1,2,3,5,7,11}. The intersection of A with B is {1,2}, the intersection of A with C is also {1,2}, but B is not equal to C.
In mathematics, when you add three variables A, B, and C together, the result is the sum of the three values. This can be represented as A + B + C. The sum of A plus B plus C is simply the total value obtained by adding the individual values of A, B, and 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.