ApCoCoA-1:Hom.SRSolve

From ApCoCoAWiki
Revision as of 16:15, 2 October 2020 by AndraschkoBot (talk | contribs) (Bot: Category moved)

Hom.SRSolve

Solves a non-square zero dimensional homogeneous or non-homogeneous polynomial system of equations.

Syntax

Hom.SRSolve(P:LIST,HomTyp:INT):LIST

Description

Please note: The function(s) explained on this page is/are using the ApCoCoAServer. You will have to start the ApCoCoAServer in order to use it/them.

This function computes isolated solutions of a non-square polynomial system by using the idea of randomization. Consider the non-square polynomial system F:=[ x^2-1, xy-1, x^2-x ]. After randomization this system will be converted into a system G := [ x^2-1+as, xy-1+bs, x^2+x+cs ], where a, b and c are complex numbers having absolute value near one and s is a slack variable. The system G is a randomization of system F. Some times the system G may have more solutions than F. This function first randomizes the given system to make it square and then call HOM4PS to solve it. This function and the function Hom.LRSolve do the same job but with a different technique of randomization.

This function provides two different kinds of computation depending on the input that you provide in ApCoCoAServer during execution. After passing the command Hom.SRSolve(P,HomTyp) in ApCoCoA you need to interact with ApCoCoAServer. At this stage ApCoCoAServer asks you to enter 1 for the polyhedral homotopy and enter 2 for the classical linear homotopy. As a result this function provides all isolated solutions of a zero dimensional system of polynomial equations. The system of polynomials may be homogeneous or non-homogeneous.

  • @param P: List of polynomials of the given system.

  • @param HomTyp: set it to 1 for polyhedral homotopy and to 2 for classical linear homotopy.

  • @return A list of lists containing the finite solutions of the system P.


Example

-- An example of zero dimensional Non-Homogeneous Solving using the classical linear homotopy.
-- We want to find isolated solutions of the following system. 

Use QQ[x[1..3]];              
P := [
  x[1]x[2]x[3] - x[1]x[2]-15, 
  3x[1]x[2]-x[1]+5, 
  7x[1]x[3] - x[1],
  24x[1]x[2]+x[3] - 3x[1]x[3] - 1, 
  x[1]^2 - x[1] 
];

HomTyp:=1;

-- Then we compute the solution with
Hom.SRSolve(P,HomTyp);

-- Now you have to interact with ApCoCoAServer
-- Enter 1 for the polyhedral homotopy and 2 for the classical linear homotopy.
-- Since we want to use the classical linear homotopy therefore we enter 2.
-- The all finite solutions are:

----------------------------------------
[
 [[-2902316230611307/1250000000000000, -27857718907640603/10000000000000000],
  [-5674959881126967/500000000000000000, -8937804463608219/25000000000000000],
  [46724750476097837/100000000000000000, -38716232173770071/100000000000000000]],
 [[65920011696250427/1000000000000000, -1372011739419221/12500000000000], 
  [84785163919836641/10000000000000000, -10345947531705213/25000000000000000],
  [12838340038652873/1000000000000000, 1179955721096759/156250000000000]],
 [[-11200479653149161/50000000000000000000, -1847541166671739/4000000000000000000],
  [-398464307671313/250000000000, -83690324485203917/100000000000000],
  [27034776057405041/100000000000000000, -16633293038412589/1000000000000000]],
 [[1283479859536169/400000000000000, 226533750215299/80000000000000],
  [-739601189373527/40000000000000000, 10474383104189437/50000000000000000],
  [-4621056904224851/25000000000000000, 6394233590549897/25000000000000000]],
 [[4510213996339667/12500000000000000000, 551766683622709/4000000000000000000],
  [-26177318181795687/50000000000000, -3490003097264787/2000000000000],
  [31612616513119707/10000000000000000, 21347082990880249/1000000000000000]]
]

-- The smallest list represents a complex number.


Example

-- An example of zero dimensional Non-Homogeneous Solving using the polyhedral homotopy.
-- We want to find isolated solutions of non-homogeneous polynomial system x[1]^2-1=0, x[1]x[2]-1=0, x[1]^2-x[1]=0. 

Use QQ[x[1..2]];           
P := [x[1]^2-1, x[1]x[2]-1,x[1]^2-x[1]];
HomTyp:=1;

-- Then we compute the solution with
Hom.SRSolve(P,HomTyp);

-- Now you have to interact with ApCoCoAServer
-- Enter 1 for the polyhedral homotopy and 2 for the classical linear homotopy.
-- Since we want to use polyhedral homotopy therefore we enter 1.
-- The all finite solutions are:

----------------------------------------
[
 [[-51917361941691031/100000000000000000, -1846796377886887/4000000000000000],
  [-14765467180940843/10000000000000000, 23807586810196137/10000000000000000]],
 [[1, 0], [1, 0]]
]


-- The smallest list represents a complex number. For example above system has 2 solutions the second solution is [[1, 0], [1, 0]] 
-- and we read it as x=2+0i, y=1+0i. Since imaginary part is zero therefore its a real solution. 



See also

Introduction to CoCoAServer

Hom.HSolve

Hom.LRSolve