From 1485959f5aa8465e555a51b96c1d25a0e9181ef0 Mon Sep 17 00:00:00 2001 From: Anas Salam <38077746+anassalam@users.noreply.github.com> Date: Sat, 18 May 2019 17:37:03 +0500 Subject: [PATCH] info added to how to add subtract with powers (#29544) info added to how to add or subtract with powers --- .../index.md | 21 +++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) 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.
+
+