File: solve_conic.cc

package info (click to toggle)
eclib 20160720-2~bpo8%2B2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 5,092 kB
  • sloc: cpp: 46,234; makefile: 236; sh: 108
file content (93 lines) | stat: -rw-r--r-- 3,092 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// solve_conic.cc: conic solving program for semi-diagonal conics over Q
//////////////////////////////////////////////////////////////////////////
//
// Copyright 1990-2012 John Cremona
// 
// This file is part of the eclib package.
// 
// eclib is free software; you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2 of the License, or (at your
// option) any later version.
// 
// eclib is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for more details.
// 
// You should have received a copy of the GNU General Public License
// along with eclib; if not, write to the Free Software Foundation,
// Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
// 
//////////////////////////////////////////////////////////////////////////
 
#include <eclib/marith.h>
#include <eclib/quadratic.h>
#include <eclib/conic.h>

#ifndef VERBOSITY
#define VERBOSITY 0
#endif
#ifndef CONIC_METHOD
#define CONIC_METHOD 4
#endif
#define TEST_PARAM

int main()
{
  initprimes("PRIMES",VERBOSITY);
  cout<<"Solving ax^2 + bxz + cz^2 = dy^2\n";
  cout<<"Using method "<<CONIC_METHOD<<endl<<endl;

  bigint a,b,c,d,x0,y0,z0,disc;
  quadratic q, qx, qy, qz;

  while(1) {
  cout << "Enter coefficients a b c d: ";
  cin>>ws;  if(cin.eof()) {cerr<<endl; break;}
  cin >> a >> b >> c >> d;
  cout<<a<<" "<<b<<" "<<c<<" "<<d<<endl; 
  if(d==0) {break;}
  q=quadratic(a,b,c);
  int res = solve_conic(q,d,x0,y0,z0,CONIC_METHOD);
  if(res) 
    {
      cout << "Solution: "; show_xyz(x0,y0,z0); cout<<endl;
      if(testsol(a,b,c,d,x0,y0,z0,0))
	cout<<"Solution is correct!\n";
      else
	cout<<"Solution is WRONG\n";
#ifdef TEST_PARAM
      res = solve_conic_param(q,d,qx,qy,qz,CONIC_METHOD,VERBOSITY);
      x0=qx[0]; y0=qy[0]; z0=qz[0]; cancel(x0,y0,z0);
      cout << "Solution: "; show_xyz(x0,y0,z0); cout<<endl;
      cout << "Parametric solution:\n";
      cout << "x = ["<<qx[0]<<","<<qx[1]<<","<<qx[2]<<"]*[u^2,uv,v^2]\n";
      cout << "y = ["<<qy[0]<<","<<qy[1]<<","<<qy[2]<<"]*[u^2,uv,v^2]\n";
      cout << "z = ["<<qz[0]<<","<<qz[1]<<","<<qz[2]<<"]*[u^2,uv,v^2]\n";
      
      bigint dqx = qx.disc();
      cout<<"disc(qx) = "<<dqx;
      if(dqx==4*c*d) cout<<" = 4cd\n";
      else cout<<" --NOT equal to 4cd = " << (4*c*d) <<endl;
      bigint dqz = qz.disc();
      cout<<"disc(qz) = "<<dqz;
      if(dqz==4*a*d) cout<<" = 4ad\n";
      else cout<<" --NOT equal to 4ad = " << (4*a*d) <<endl;
      bigint result = resultant(qx,qz);
      cout<<"resultant(qx,qz)   = "<<result;
      bigint res2 = sqr(d)*q.disc();
      if(result==res2) cout<<" = d^2(b^2-4ac)\n";
      else cout<<" --NOT equal to d^2(b^2-4ac) = "<<res2<<endl;
      if(testparamsol(a,b,c,d,qx,qy,qz,0))
	cout<<"Parametric solution is correct!\n";
      else
	cout<<"Parametric solution is WRONG\n";
#endif
    }
  else cout << "No solution.\n";
  }
}