Saturday, June 13, 2026
HomeLanguagesPython | sympy.as_independent() method

Python | sympy.as_independent() method

With the help of sympy.as_independent() method, we can separate the mathematical expression independently by the variable passed as parameter in the sympy.as_independent() method.

Syntax : sympy.as_independent(variable)

Return : Return a tuple having separated variables in mathematical expression.

Example #1 :
In this example we can see that by using sympy.as_independent() method, we are able to separate the mathematical function on the basis of independent variable which is passed as parameter.




# import sympy
from sympy import * 
  
x, y = symbols('x y')
  
# Use sympy.as_independent(variable) method
gfg = (1 + 2 * x + 1 / x).as_independent(x)
    
print(gfg)


Output :

(1, 2*x + 1/x)

Example #2 :




# import sympy
from sympy import * 
  
x, y = symbols('x y')
  
# Use sympy.as_independent(variable) method
gfg = (1 / y**2 + x).as_independent(y)
    
print(gfg)


Output :

(x, y**(-2))

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

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS