Previous Up Next

26.15.14  Checking whether elements are conjugates

The is_conjugate command determines whether or not two objects are conjugates of each other.

Examples

is_conjugate(circle(0,1+i),point(1-i),point(3+i))
     
1           
is_conjugate(circle(0,1),point((1+i)/2),line(1+i,2))
     
1           
is_conjugate(circle(0,1),line(1+i,2),line((1+i)/2,0))
     
1           
is_conjugate(point(1+i),point(3+i),point(i),point(3/2+i))
     
1           
is_conjugate(line(0,1+i),line(2,3+i),line(3,4+i),line(3/2,5/2+i))
     
1           

Previous Up Next