Python program to solve the given math formula.

In this python basic program, we will solve the given math formula.
Formula : a2 – b2 = (a-b)(a+b)

Steps to solve the program
  1. Take two variables as input and assign value to them.
  2. Using logic solve the given math formula.
  3. Formula : a2 – b2 = (a-b)(a+b)
  4. Print the output.
				
					a = 3
b = 2
result = (a+b)*(a-b)

print("(a^2-b^2): ",result)
				
			

Output :

				
					(a^2-b^2):  5
				
			

solve the given math formula. Formula : (a – b)2 = a^2 + b^2 – 2ab

solve the given math formula. Formula : (a + b)3 = a3 + 3ab(a+b) + b3 

Leave a Comment