In this python basic program, we will solve the given math formula.
Formula : (a – b)2 = a^2 + b^2 – 2ab
Steps to solve the program
- Take two variables as input and assign value to them.
- Using logic solve the given math formula.
- Formula : (a – b)2 = a^2 + b^2 – 2ab
- Print the output.
a = 2
b = 3
result = a**2-2*a*b+b**2
print("(a-b)^2: ",result)
Output :
(a-b)^2: 1