Page 1 of 1

Factorisation formel.

Unread postPosted: 29 Apr 2012, 20:27
by jozefff
Es que quelqu'un saurais comment on peut capturer le facteur commun d'une liste formel.
Par exemple {k*a,k*b,k*7} renvoi k :quest: ?
D’avance merci.

Re: Factorisation formel.

Unread postPosted: 29 Apr 2012, 20:32
by Excale
A coup de gcd() ça doit pouvoir se faire.

Je regarde ça :).

Edit: Moui non, pas comme ça...

Re: Factorisation formel.

Unread postPosted: 29 Apr 2012, 20:40
by Excale
Code: Select all
Define listfact(list)=
Func
:Local factc,i
:factc:=list[1]
:For i,1,dim(list)
:  factc:=polyGcd(factc,list[i])
:  Disp factc
:EndFor
:Return factc
:EndFunc


Ça te va :)?

Re: Factorisation formel.

Unread postPosted: 29 Apr 2012, 20:43
by jozefff
En tout cas merci j'étudie ça et je te dit.

Re: Factorisation formel.

Unread postPosted: 29 Apr 2012, 21:02
by jozefff
Bien jouer. En deux secondes et qu'avec des fonctions que je connaissait.
Merci et respect

Re: Factorisation formel.

Unread postPosted: 29 Apr 2012, 21:12
by Excale
De rien :).