Ceva's theorem: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 10: Line 10:
var b = board.create('point', [4, -3], {name:'b'});
var b = board.create('point', [4, -3], {name:'b'});
var c = board.create('point', [1, 4], {name:'c'});
var c = board.create('point', [1, 4], {name:'c'});
var s1 = board.create('segment', [a, b], {color: 'black'});
var s2 = board.create('segment', [a, c], {color: 'black'});
var s3 = board.create('segment', [c, b], {color: 'black'});


var TV = function(p,q,t) {
var TV = function(p,q,t) {

Revision as of 20:43, 2 May 2021

TV(a,b,c) is the affine ratio |ac| / |ab|.

The underlying JavaScript code