Derivation of Golden Ratio by a right trangle

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

var p1 = board.create('point', [-7, -1.0],{face:'',fixed:true});
var p2 = board.create('point', [7, -1.0],{face:'',fixed:true});
var p3 = board.create('point', [-7, 6.0],{face:'',fixed:true});
var l1 = board.create('segment', [p1, p2]);
var l2 = board.create('segment', [p2, p3]);
var l3 = board.create('segment', [p3, p1]);
var bi1 = board.create('bisector', [p1, p3, p2],{visible:false});
var i1 = board.create('intersection', [l1, bi1],{face:''});
var l4 = board.create('segment', [p1, i1],{visible:false});
var l5 = board.create('segment', [i1, p3],);
var p4 = board.create('point', [p1.X()+2*l4.L(), p1.Y()],{face:''});
					

The image appears in the following posts

Triangle posted 1 year ago

Scroll to Top