Python | sympy.Add() method
With the help of sympy.Add()
method, we can add two variables and can form a mathematical expression by using sympy.Add()
method.
Syntax :
sympy.Add()
Return : Return the addition of two variables.
Example #1 :
In this example we can see that by using sympy.Add()
method, we are able to add the two variables and we can also form mathematical expression.
# import sympy from sympy import * x, y = symbols( 'x y' ) # Use sympy.Add() method gfg = Add(x, y) print (gfg) |
Output :
x+y
Example #2 :
# import sympy from sympy import * x, y = symbols( 'x y' ) # Use sympy.Mul() method gfg = Add(Mul(x, y), Mul(x, x)) print (gfg) |
Output :
x**2 + x*y
Recommended Posts:
- class method vs static method in Python
- Python | set() method
- Python | os.dup() method
- Python | next() method
- Python | after method in Tkinter
- Python | sys.getrecursionlimit() method
- Python PIL | eval() method
- Python | sympy.rf() method
- Python | os.readlink() method
- Python | os.getpgid() method
- Python | sys.getdefaultencoding() method
- Python | os.tcgetpgrp() method
- Python PIL | ImagePalette() Method
- Python | sympy.ff() method
- Python | sympy.nT() method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.