Horje
Python | sympy.cofactors() method

With the help of sympy.cofactors() method, we can find the cofactors of two numbers that is passed as a parameter in the sympy.cofactors() method.

Syntax : sympy.cofactors(var1, var2)
Return : Return tuple of cofactors.

Example #1 :
In this example we can see that by using sympy.cofactors() method, we are able to find the cofactors of any two numbers that is passed as parameters.




# import sympy
from sympy import *
  
# Using sympy.cofactors() method
gfg = cofactors(6, 8)
  
print(gfg)

Output :

( 2, 3, 4 )

Example #2 :




# import sympy
from sympy import *
  
# Using sympy.cofactors() method
gfg = cofactors(34, 81)
  
print(gfg)

Output :

( 1, 34, 81 )




Reffered: https://www.geeksforgeeks.org


Python

Related
Python | sympy.lcm() method Python | sympy.lcm() method
Python | sympy.Rational() method Python | sympy.Rational() method
pwd module in Python pwd module in Python
grp module in Python grp module in Python
Python | sympy.as_independent() method Python | sympy.as_independent() method

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