Hi at all I need your help. I've got two questions for you. FIRST: Is it possible to resolve simultaneously, with c code, a system of parametric equations? as an example [ T- Fb+3/2Fb+V=0 [ [ Fb-T+V=0
where Fb= constants v,T= are unknown quantities
SECOND: Is it possible to obtain the result of the system as fractions?
example: V=-3/4Fb T=-1/4Fb
Thanks very much for your help Please write me soon bye
Is it possible to resolve simultaneously, with c code, a system of parametric equations?
Yes. There are various algorithms out there to tackle this. Any good book on numeric math should contain appropriate sections.
Is it possible to obtain the result of the system as fractions?
Sure, if you're up to creating your own "fractional number" data type. Maybe there are libraries for it out there, though.