summaryrefslogtreecommitdiff
path: root/tests/99misc/44
diff options
context:
space:
mode:
Diffstat (limited to 'tests/99misc/44')
-rw-r--r--tests/99misc/4421
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/99misc/44 b/tests/99misc/44
new file mode 100644
index 0000000..74c774b
--- /dev/null
+++ b/tests/99misc/44
@@ -0,0 +1,21 @@
+T=d f ld mf
+V=x
+R=0,100,.125
+F=(x^2)^(1/8) + \
+ 1.1*(x^3)^(1/7) + \
+ 1.2*(x^4)^(1/6) + \
+ 1.3*(x^5)^(1/5) + \
+ 1.4*(x^6)^(1/6) + \
+ 1.5*(x^7)^(1/4) + \
+ 1.6*(x^8)^(1/3) + \
+ 1.7*(x^9)^(1/2) + \
+ 1.8*(sqrt(abs(-sqrt(x))^3))
+C=fp_pow(x*x, 1/8) + \
+ 1.1*fp_pow(x*x*x, 1/7) + \
+ 1.2*fp_pow(x*x*x*x, 1/6) + \
+ 1.3*fp_pow(x*x*x*x*x, 1/5) + \
+ 1.4*fp_pow(x*x*x*x*x*x, 1/6) + \
+ 1.5*fp_pow(x*x*x*x*x*x*x, 1/4) + \
+ 1.6*fp_pow(x*x*x*x*x*x*x*x, 1/3) + \
+ 1.7*fp_pow(x*x*x*x*x*x*x*x*x, 1/2) + \
+ 1.8*(fp_sqrt(fp_pow(fp_abs(-fp_sqrt(x)), 3)))