Comment on A - ( B x C ) + ( D x E ) = A - ( B x C ) - ( D x E ) if A > B + C + D + E

<- View Parent
Arkouda@lemmy.ca ⁨23⁩ ⁨hours⁩ ago

The brackets are used to make the equation look cleaner, and the issue for declaring the statement true was doing Addition and Subtraction in the wrong order.

A - ( B x C ) + ( D x E ) = A - ( B x C ) - ( D x E )

Using your example:

10 - 1 + 1 = 10 doing the subtraction first. 10 - 1 + 1 = 8 doing the addition first.

When doing the other side of the equation:

10 - 1 - 1 = 8 regardless of order because it is all subtraction.

By doing it out of order and incorrectly I was able to make my statement true that as long as A was greater than the sum of B-E both sides would be equal.

source
Sort:hotnewtop