diff --git a/guide/english/mathematics/how-to-add-and-subtract-with-powers/index.md b/guide/english/mathematics/how-to-add-and-subtract-with-powers/index.md index 857708f844..23139efe40 100644 --- a/guide/english/mathematics/how-to-add-and-subtract-with-powers/index.md +++ b/guide/english/mathematics/how-to-add-and-subtract-with-powers/index.md @@ -3,9 +3,26 @@ title: How to Add and Subtract with Powers --- ## How to Add and Subtract with Powers -This is a stub. Help our community expand it. +To add or subtract with powers, both variables and exponential powers of the variables must be same. The required operations is performed on the coefficients, leaving the variable and exponent as it is. The terms that combines always have exactly the same variables with exactly the same powers. -This quick style guide will help ensure your pull request gets accepted. +
+Example 1: +2x + x = 3x +2x - x = x +Here both variables and their power are same, hence addition and subtraction can be performed. + +Example 2: +2x2 + x2 = 3x2 +2x2 - x2 = x2 +Here both variables and their power are same, hence addition and subtraction can be performed. + +Example 3: +3x2 + 2x3 = 3x2 + 2x3 +3x2 - 2x3 = 3x2 - 2x3 +3x2 - 2y2 = 3x2 - 2y2 +Here both variables and their powers are NOT same, hence addition and subtraction cannot be performed. + +