Wednesday, September 3, 2025
HomeLanguagesPython | sympy.Add() method

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

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11854 POSTS0 COMMENTS
Shaida Kate Naidoo
6746 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS