Horje
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))




Reffered: https://www.geeksforgeeks.org


Python

Related
ToDo webapp using Django ToDo webapp using Django
Python | sympy.symbols() method Python | sympy.symbols() method
Python | sympy.series() method Python | sympy.series() method
Python | Check if one dictionary is subset of other Python | Check if one dictionary is subset of other
Python | Type conversion of dictionary items Python | Type conversion of dictionary items

Type:
Geek
Category:
Coding
Sub Category:
Tutorial
Uploaded by:
Admin
Views:
9