The vertex of central angle is between the two arms of a inscribed angle

						var board = JXG.JSXGraph.initBoard('box1', {
boundingbox: [-10, 10, 10, -10],showNavigation:false, showcopyright: false, axis: false,
});

var p1 = board.create('point', [0, 2.0],{name:'O',face:'',label:{offset:[-15,0]}});
var c1 = board.create('circle', [p1, 6],);
var g1 = board.create('glider', [0.0, 4.5, c1],{name:'',face:''});

var g2 = board.create('glider', [4.0, 3, c1],{name:'',face:''});

var g3 = board.create('glider', [-3, -2, c1],{name:'',face:''});

var l1 = board.create('segment', [g1,g3],);



var l2 = board.create('segment', [g3,g2]);
var a1 = board.create('angle', [g2, g3, g1],{radius:2,label:{offset:[-5,3]}});
var l3 = board.create('segment', [p1,g1]);
var l4 = board.create('segment', [p1,g2]);

var a2 = board.create('angle', [g2, p1, g1],{radius:2});
var t1 = board.create('text',[-4.5,-6,'O is between the two arms']);					

The image appears in the following posts

Triangle posted 1 year ago

Scroll to Top