Simultaneous polynomial equations.

  • Thread starter Thread starter Tableandchair
  • Start date Start date
  • Tags Tags
    Polynomial
AI Thread Summary
Numerical methods for solving simultaneous polynomial equations can be effectively implemented using techniques like Gaussian elimination and the Newton-Raphson method. A suggested alternative is the Grobner Basis approach, which can transform the equations into a triangular form for easier solving. Software tools like Axiom and Maxima can implement this algorithm, although they may sometimes struggle with complex cases. When functioning correctly, these methods provide accurate solutions and valuable insights into the equations. Exploring these options can help in finding a solution for the given polynomial equations.
Tableandchair
Messages
1
Reaction score
0
Hi,

I'm looking for a numerical method to solve simultaneous polynomial equations that can be implemented in a computer program. I have included an example of a typical pair of equations that I may need to solve. In this case the two variables that I need to solve for are x and y, all other terms are known constants (with b equal to approximately 5).

Equation 1:

A1 * (k1 - x) * (k1 - 1 + x)^b + A2 * (k2 - y) * (k2 - 1 + y)^b = 0

Equation 2:

[b * (k1 - x)^2 + (k1 - 1 + x)^2] - [b * (k2 - y)^2 + (k2 - 1 + y)^2] = 0

It has been suggested that a Gaussian elimination method along with the Newton-Raphson method be used. Unfortunately, i have been scratching my head over this one for a couple of days now, but still have not found an answer.

Is anyone able to offer any thoughts/suggestions on this subject?

Thanks
 
Mathematics news on Phys.org
This is an old question; but for anybody who wanders by:
Try Grobner Basis's: A good introduction is
http://www.msri.org/web/msri/static-pages/-/node/244
Axiom and Maxima both implement the algorithm; together with some specialized Algebraic Geometry programs.
The Axiom and Maxima implementations can both wander off; but when they work they are great.
Outside of a small hole I wandered into, they do work and offer insight. When they wandered off they just kept chugging. If they gave an answer it was always right.
Basically the process is to take the simultaneous equations and algorithmically change them into a triangular equation set which is successively solvable. You have control of ordering of the triangular system; and to a certain extent the meaning of "simplicity".
Gaussian Elimination on Steroids.
Ray
 
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Back
Top