Can anybody tell me how to do a cubic root of a number using FnxBasic?
Many thanks in advance!!!
Cubic Root of a number
Cubic Root of a number
cubic root of 64 can be this:
root=exp(log(64)/3)
this should be precise about a lot of decimals if not let me know.
you need a little program that is called the newton method.
best regards marco
root=exp(log(64)/3)
this should be precise about a lot of decimals if not let me know.
you need a little program that is called the newton method.
best regards marco
-
- Posts: 8
- Joined: Tue Feb 01, 2011 8:57 pm
Cubic Root of a number
Hi
cubic root of 1000 can be this:
You can use also this formula:
root=1000^(1/3)
Giovanni
cubic root of 1000 can be this:
You can use also this formula:
root=1000^(1/3)
Giovanni