source: CGBLisp/examples/shosh.maple@ 1

Last change on this file since 1 was 1, checked in by Marek Rychlik, 15 years ago

First import of a version circa 1997.

File size: 864 bytes
Line 
1Return-Path: shosh@irisplot.math.arizona.edu
2Date: Fri, 7 Feb 1997 14:23:19 -0700 (MST)
3From: Alexander Shoshitaishvili <shosh@math.arizona.edu>
4To: rychlik@math.arizona.edu
5Subject: file for maple
6
7with(grobner):
8Vars:= [u12,u13,u14,u23,u24,u34,v12,v13,v14,v23,v24,v34,e1,e2,e3,e4,h1,h2,h3,
9h4,x1,x2,x3,x4,y1,y2,y3,y4];
10f12:=1-u12*(x1-x2)-v12*(y1-y2);
11f13:=1-u13*(x1-x3)-v13*(y1-y3);
12f14:=1-u14*(x1-x4)-v14*(y1-y4);
13f23:=1-u23*(x2-x3)-v23*(y2-y3);
14f24:=1-u24*(x2-x4)-v24*(y2-y4);
15f34:=1-u34*(x3-x4)-v34*(y3-y4);
16a1:=x1^2+e1+e2*x1+e3*y1+e4*x1*y1;
17a2:=y1^2+h1+h2*x1+h3*y1+h4*x1*y1;
18b1:=x2^2+e1+e2*x2+e3*y2+e4*x2*y2;
19b2:=y2^2+h1+h2*x2+h3*y2+h4*x2*y2;
20c1:=x3^2+e1+e2*x3+e3*y3+e4*x3*y3;
21c2:=y3^2+h1+h2*x3+h3*y3+h4*x3*y3;
22d1:=x4^2+e1+e2*x4+e3*y4+e4*x4*y4;
23d2:=y4^2+h1+h2*x4+h3*y4+h4*x4*y4;
24F:=[f12,f13,f14,f23,f24,f34,a1,a2,b1,b2,c1,c2,d1,d2];
25Gb:=gbasis(F,Vars,plex);
Note: See TracBrowser for help on using the repository browser.