Advertisement
zmy

RubiTests

zmy
Aug 2nd, 2011
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. (*与测试用例相比后,Rubi中未定义的函数类型*)
  2. (*Algebraic Function Integration*)
  3. Int[Sqrt[(a+b x^n)/x^2],x]
  4. Int[1/Sqrt[(a+x) (b+x)],x]
  5. Int[(Sqrt[1-x]+Sqrt[1+x])^2/x,x]
  6. Simplify[Int[x/(x+Sqrt[x^6]),x]]
  7. Int[1/(x (a+b x)^(1/3)),x]
  8. Int[x^(n/2)/Sqrt[1+x^5],x](*部分n的值无结果,如n=13*)
  9. Int[1/(x+Sqrt[-2+3 x-x^2]),x]
  10. (*Error Function Integration*)
  11. Int[x^m Erf[b x]^2,x]
  12. Int[x^m Erf[a+b x]^2,x]
  13. Int[x^m FresnelS[b x]^2,x]
  14. (*Exponential Function Integration*)
  15. Int[x^m E^(a+b x)^n,x](*有定义,但只能计算出表达式中的部分结果*)
  16. Int[8^x/(a+b 4^x),x]
  17. Int[4^x/(a+b 2^x),x]
  18. Int[E^(a+b x^n) E^(c+d x^n),x]
  19. (*Hyperbolic Function Integration*)
  20. Int[x^m Tanh[a+b x],x](*当m=1时,可以获得结果,其他情况下只能计算出部分结果*)
  21. Int[x^m/(a+b Sinh[x]),x]
  22. Int[Sec[a+b x]^4 Tan[a+b x]^n,x]
  23. Int[Sqrt[a+b Tanh[x]],x](*仅当a==b==1时才能计算出结果*)
  24. Int[Sqrt[a+b Coth[x]],x](*仅当a==b==1时才能计算出结果*)
  25. Int[Sech[x]^2/Sqrt[a-b Tanh[x]^2],x]
  26. Int[Tanh[x]/Sqrt[a+b Tanh[x]^4],x]
  27. Int[Sqrt[Sinh[a+b x]/Cosh[a+b x]],x](*但能计算出 Sqrt[Sinh[a+b x]]/Sqrt[Cosh[a+b x]] 的结果*)
  28. (*Integral Function Integration*)
  29. Int[x^m ExpIntegralEi[a+b x]^2,x]
  30. Int[x^m SinIntegral[a+b x]^2,x]
  31. Int[x^m Cos[b x] SinIntegral[b x],x]
  32. Int[CosIntegral[a+b x] Sin[c+d x],x]
  33. (*Inverse Hyperbolic Function Integration*)
  34. Int[ArcTanh[x]/(a+b x), x]
  35. Int[ArcTanh[x]/(a+b x+c x^2), x]
  36. Int[ArcTanh[a x^n]/x, x]
  37. Int[ArcTanh[a Tanh[x]], x]
  38. Int[ArcSinh[E^(a+b x)], x]
  39. (*Inverse Trig Function Integration*)
  40. Int[ArcSec[a+b x], x](*仅能计算出部分结果,预测应该是 1/((a+b x) Sqrt[1-1/(a+b x)^2]) 这部分没有积出来*)
  41.  
  42. Int[ArcSec[a x^n]/x, x](*仅能计算出部分结果*)
  43. (*Logarithm Function Integration*)
  44.  
  45. Int[Log[a+b x^m]/x, x](*当a!=1时,计算结果不正确*)
  46. Int[Log[a+b x^2]^2/x^3, x]
  47. Int[Log[(c x)/(a+b x)]^3, x]
  48. Int[Log[(a+b x)^2/x^2]^3, x]
  49. (*Rational Function Integration*)
  50. Int[x^p (a x^n+b x^(m n+n+p+1))^m, x](*仅当个系数为具体数字时,才能计算出结果*)
  51. Int[(a+b x)^(n-1) (c+d (a+b x)^n)^m, x]
  52. (*Special Function Integration*)
  53. Int[x^m Gamma[n,a+b x],x]
  54. Int[x^m PolyLog[n,c E^(a+b x)],x]
  55. Int[(Log[x]^m PolyLog[n,a x])/x,x]
  56. Int[x^m ProductLog[a+b x],x]
  57. Int[x^m ProductLog[a+b x]^2]
  58. Int[x^m ProductLog[a x^2],x]
  59. Int[x^m ProductLog[a/x],x]
  60. Int[ProductLog[a/x^(1/(n-1))]^n,x]
  61. Int[ProductLog[a x^n]^p/x^(n(p-1)+1),x]
  62. (*Trig Function Integration*)
  63. Int[1/(1+Sec[a+b x]),x]
  64. Int[Sin[x] Tan[n x],x](*仅当n=1时能计算出结果*)
  65.  
  66. Int[Sqrt[Sec[a+b x]^2],x]
  67. Int[Sqrt[Sec[x]^2],x]
  68. Int[Sqrt[Csc[x]^2],x]
  69. Int[Sqrt[1+Sec[x]],x]
  70. Int[Sqrt[1+Csc[x]],x]
  71. Int[Sqrt[c*Cos[x-d]],x]
  72. Int[Sin[x]/Sqrt[a+b Sin[x]^2],x]
  73. Int[Cot[x]/Sqrt[a+b Tan[x]^2+c Tan[x]^4],x]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement