Python program to solve the given math formula.

In this python basic program, we will solve the given math formula.
Formula : (a + b)3 = a3 + 3ab(a+b) + b3 

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 : (a + b)3 = a3 + 3ab(a+b) + b3 
  4. Print the output.
				
					a = 3
b = 2
result = a**3+3*a*b*(a+b)+b**3

print("(a+b)^3: ",result)
				
			

Output :

				
					(a+b)^3:  125
				
			

solve the given math formula. Formula : a2 – b2 = (a-b)(a+b)

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

Leave a Comment