mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Some folks might think: “you still use RCS”?!? And we will say, hey, at least we switched from SCCS to RCS back in … I think it was around 1994 ... at least we are keeping up! :-) :-) :-) Logs say that SCCS version 18 became RCS version 19 on 1994 March 18. RCS served us well. But now it is time to move on. And so we are switching to git. Calc releases produce a lot of file changes. In the 125 releases of calc since 1996, when I started managing calc releases, there have been 15473 file mods!
76 lines
2.5 KiB
Plaintext
76 lines
2.5 KiB
Plaintext
NAME
|
|
root - root of a number
|
|
|
|
SYNOPSIS
|
|
root(x, n, [, eps])
|
|
|
|
TYPES
|
|
x number
|
|
n positive integer
|
|
eps nonzero real, defaults to epsilon()
|
|
|
|
return real number
|
|
|
|
DESCRIPTION
|
|
For real x and positive integer n, n being odd if x is negative,
|
|
root(x,n,eps) returns a multiple of eps differing from the
|
|
real n-th root of x (nonnegative if x is positive) by less than
|
|
0.75 eps, usually by less than 0.5 eps. If the n-th root of
|
|
x is a multiple of eps, it will be returned exactly.
|
|
|
|
For complex x and positive integer n, or negative x with positive even
|
|
n, root(x, n, eps) returns a real or complex numbers whose real
|
|
and imaginary parts are multiples of eps differing from the real
|
|
and imaginary parts of the principal n-th root of x by less than
|
|
0.75 eps, usually by less than 0.5 eps.
|
|
|
|
For negative x and odd n, the principal n-th root of x may be
|
|
obtained by using power(x, 1/n, eps).
|
|
|
|
EXAMPLE
|
|
; print root(7, 4, 1e-5), root(7, 4, 1e-10), root(7, 4, 1e-15)
|
|
1.62658 1.6265765617 1.626576561697786
|
|
|
|
; print root(1+3i, 3, 1e-5), root(1 + 3i, 3, 1e-10)
|
|
1.34241+.59361i 1.3424077452+.5936127825i
|
|
|
|
; print root(-8, 3, 1e-5), root(-8, 34, 1e-5)
|
|
-2 ~1.05853505050032399594+~.09807874962631613016i
|
|
|
|
; print root(1i, 100, 1e-20)
|
|
.99987663248166059864+.01570731731182067575i
|
|
|
|
LIMITS
|
|
n >= 0
|
|
eps > 0
|
|
|
|
LINK LIBRARY
|
|
void rootvalue(VALUE *x, VALUE *n, VALUE *eps, VALUE *result)
|
|
NUMBER *qroot(NUMBER *x, NUMBER *n, NUMBER *eps)
|
|
COMPLEX *c_root(COMPLEX *x, NUMBER *n, NUMBER *eps)
|
|
|
|
SEE ALSO
|
|
power
|
|
|
|
## Copyright (C) 1999 Landon Curt Noll
|
|
##
|
|
## Calc is open software; you can redistribute it and/or modify it under
|
|
## the terms of the version 2.1 of the GNU Lesser General Public License
|
|
## as published by the Free Software Foundation.
|
|
##
|
|
## Calc is distributed in the hope that it will be useful, but WITHOUT
|
|
## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
## or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
|
|
## Public License for more details.
|
|
##
|
|
## A copy of version 2.1 of the GNU Lesser General Public License is
|
|
## distributed with calc under the filename COPYING-LGPL. You should have
|
|
## received a copy with calc; if not, write to Free Software Foundation, Inc.
|
|
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
##
|
|
## Under source code control: 1995/10/25 04:03:46
|
|
## File existed as early as: 1995
|
|
##
|
|
## chongo <was here> /\oo/\ http://www.isthe.com/chongo/
|
|
## Share and enjoy! :-) http://www.isthe.com/chongo/tech/comp/calc/
|