0
Guys Please Help I'm new
Guys can you help me is there a way to solve a factoring polynomials using phyton for example 2x+6xy+7xyz is there a way to factor that using phyton if there's a way please give an example of the code thanks ^_^
1 Answer
0
Yes, you can do this in python. You just need to translate the process your mind goes through into a big function which does what you need.
Fot example, create an if statement checking for a greatest common factor, and if you get one, change the way yout variables are arranged. After that, you might want to generate a list of factors between two variables and so on.
You just gotta put your nose to the grindstone.