Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/fining/examples/gap/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 27.6.2023 mit Größe 453 B image not shown  

Quelle  affine_incident.g   Sprache: unbekannt

 
#incidence and containment in affine spaces
as := AG(3,16);
p := AffineSubspace(as,[1,0,0]*Z(16)^0);
l := AffineSubspace(as,[1,0,0]*Z(16),[[0,1,1]]*Z(16)^0);
plane := AffineSubspace(as,[1,0,0]*Z(16)^0,[[1,0,0],[0,1,1]]*Z(16)^0);
p in p;
p in l;
l in p;
l in plane;
plane in l;
p in plane;
p in as;
l in as;
plane in as;
as in p;
IsIncident(p,l);
IsIncident(l,p);
IsIncident(l,plane);
IsIncident(plane,l);
IsIncident(p,plane);
IsIncident(plane,p);
quit;

[ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ]