m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
5.6 KiB

6 months ago
  1. """Tests for efficient functions for generating orthogonal polynomials. """
  2. from sympy.core.numbers import Rational as Q
  3. from sympy.core.singleton import S
  4. from sympy.core.symbol import symbols
  5. from sympy.polys.polytools import Poly
  6. from sympy.testing.pytest import raises
  7. from sympy.polys.orthopolys import (
  8. jacobi_poly,
  9. gegenbauer_poly,
  10. chebyshevt_poly,
  11. chebyshevu_poly,
  12. hermite_poly,
  13. legendre_poly,
  14. laguerre_poly,
  15. spherical_bessel_fn,
  16. )
  17. from sympy.abc import x, a, b
  18. def test_jacobi_poly():
  19. raises(ValueError, lambda: jacobi_poly(-1, a, b, x))
  20. assert jacobi_poly(1, a, b, x, polys=True) == Poly(
  21. (a/2 + b/2 + 1)*x + a/2 - b/2, x, domain='ZZ(a,b)')
  22. assert jacobi_poly(0, a, b, x) == 1
  23. assert jacobi_poly(1, a, b, x) == a/2 - b/2 + x*(a/2 + b/2 + 1)
  24. assert jacobi_poly(2, a, b, x) == (a**2/8 - a*b/4 - a/8 + b**2/8 - b/8 +
  25. x**2*(a**2/8 + a*b/4 + a*Q(7, 8) + b**2/8 +
  26. b*Q(7, 8) + Q(3, 2)) + x*(a**2/4 +
  27. a*Q(3, 4) - b**2/4 - b*Q(3, 4)) - S.Half)
  28. assert jacobi_poly(1, a, b, polys=True) == Poly(
  29. (a/2 + b/2 + 1)*x + a/2 - b/2, x, domain='ZZ(a,b)')
  30. def test_gegenbauer_poly():
  31. raises(ValueError, lambda: gegenbauer_poly(-1, a, x))
  32. assert gegenbauer_poly(
  33. 1, a, x, polys=True) == Poly(2*a*x, x, domain='ZZ(a)')
  34. assert gegenbauer_poly(0, a, x) == 1
  35. assert gegenbauer_poly(1, a, x) == 2*a*x
  36. assert gegenbauer_poly(2, a, x) == -a + x**2*(2*a**2 + 2*a)
  37. assert gegenbauer_poly(
  38. 3, a, x) == x**3*(4*a**3/3 + 4*a**2 + a*Q(8, 3)) + x*(-2*a**2 - 2*a)
  39. assert gegenbauer_poly(1, S.Half).dummy_eq(x)
  40. assert gegenbauer_poly(1, a, polys=True) == Poly(2*a*x, x, domain='ZZ(a)')
  41. def test_chebyshevt_poly():
  42. raises(ValueError, lambda: chebyshevt_poly(-1, x))
  43. assert chebyshevt_poly(1, x, polys=True) == Poly(x)
  44. assert chebyshevt_poly(0, x) == 1
  45. assert chebyshevt_poly(1, x) == x
  46. assert chebyshevt_poly(2, x) == 2*x**2 - 1
  47. assert chebyshevt_poly(3, x) == 4*x**3 - 3*x
  48. assert chebyshevt_poly(4, x) == 8*x**4 - 8*x**2 + 1
  49. assert chebyshevt_poly(5, x) == 16*x**5 - 20*x**3 + 5*x
  50. assert chebyshevt_poly(6, x) == 32*x**6 - 48*x**4 + 18*x**2 - 1
  51. assert chebyshevt_poly(1).dummy_eq(x)
  52. assert chebyshevt_poly(1, polys=True) == Poly(x)
  53. def test_chebyshevu_poly():
  54. raises(ValueError, lambda: chebyshevu_poly(-1, x))
  55. assert chebyshevu_poly(1, x, polys=True) == Poly(2*x)
  56. assert chebyshevu_poly(0, x) == 1
  57. assert chebyshevu_poly(1, x) == 2*x
  58. assert chebyshevu_poly(2, x) == 4*x**2 - 1
  59. assert chebyshevu_poly(3, x) == 8*x**3 - 4*x
  60. assert chebyshevu_poly(4, x) == 16*x**4 - 12*x**2 + 1
  61. assert chebyshevu_poly(5, x) == 32*x**5 - 32*x**3 + 6*x
  62. assert chebyshevu_poly(6, x) == 64*x**6 - 80*x**4 + 24*x**2 - 1
  63. assert chebyshevu_poly(1).dummy_eq(2*x)
  64. assert chebyshevu_poly(1, polys=True) == Poly(2*x)
  65. def test_hermite_poly():
  66. raises(ValueError, lambda: hermite_poly(-1, x))
  67. assert hermite_poly(1, x, polys=True) == Poly(2*x)
  68. assert hermite_poly(0, x) == 1
  69. assert hermite_poly(1, x) == 2*x
  70. assert hermite_poly(2, x) == 4*x**2 - 2
  71. assert hermite_poly(3, x) == 8*x**3 - 12*x
  72. assert hermite_poly(4, x) == 16*x**4 - 48*x**2 + 12
  73. assert hermite_poly(5, x) == 32*x**5 - 160*x**3 + 120*x
  74. assert hermite_poly(6, x) == 64*x**6 - 480*x**4 + 720*x**2 - 120
  75. assert hermite_poly(1).dummy_eq(2*x)
  76. assert hermite_poly(1, polys=True) == Poly(2*x)
  77. def test_legendre_poly():
  78. raises(ValueError, lambda: legendre_poly(-1, x))
  79. assert legendre_poly(1, x, polys=True) == Poly(x, domain='QQ')
  80. assert legendre_poly(0, x) == 1
  81. assert legendre_poly(1, x) == x
  82. assert legendre_poly(2, x) == Q(3, 2)*x**2 - Q(1, 2)
  83. assert legendre_poly(3, x) == Q(5, 2)*x**3 - Q(3, 2)*x
  84. assert legendre_poly(4, x) == Q(35, 8)*x**4 - Q(30, 8)*x**2 + Q(3, 8)
  85. assert legendre_poly(5, x) == Q(63, 8)*x**5 - Q(70, 8)*x**3 + Q(15, 8)*x
  86. assert legendre_poly(6, x) == Q(
  87. 231, 16)*x**6 - Q(315, 16)*x**4 + Q(105, 16)*x**2 - Q(5, 16)
  88. assert legendre_poly(1).dummy_eq(x)
  89. assert legendre_poly(1, polys=True) == Poly(x)
  90. def test_laguerre_poly():
  91. raises(ValueError, lambda: laguerre_poly(-1, x))
  92. assert laguerre_poly(1, x, polys=True) == Poly(-x + 1, domain='QQ')
  93. assert laguerre_poly(0, x) == 1
  94. assert laguerre_poly(1, x) == -x + 1
  95. assert laguerre_poly(2, x) == Q(1, 2)*x**2 - Q(4, 2)*x + 1
  96. assert laguerre_poly(3, x) == -Q(1, 6)*x**3 + Q(9, 6)*x**2 - Q(18, 6)*x + 1
  97. assert laguerre_poly(4, x) == Q(
  98. 1, 24)*x**4 - Q(16, 24)*x**3 + Q(72, 24)*x**2 - Q(96, 24)*x + 1
  99. assert laguerre_poly(5, x) == -Q(1, 120)*x**5 + Q(25, 120)*x**4 - Q(
  100. 200, 120)*x**3 + Q(600, 120)*x**2 - Q(600, 120)*x + 1
  101. assert laguerre_poly(6, x) == Q(1, 720)*x**6 - Q(36, 720)*x**5 + Q(450, 720)*x**4 - Q(2400, 720)*x**3 + Q(5400, 720)*x**2 - Q(4320, 720)*x + 1
  102. assert laguerre_poly(0, x, a) == 1
  103. assert laguerre_poly(1, x, a) == -x + a + 1
  104. assert laguerre_poly(2, x, a) == x**2/2 + (-a - 2)*x + a**2/2 + a*Q(3, 2) + 1
  105. assert laguerre_poly(3, x, a) == -x**3/6 + (a/2 + Q(
  106. 3)/2)*x**2 + (-a**2/2 - a*Q(5, 2) - 3)*x + a**3/6 + a**2 + a*Q(11, 6) + 1
  107. assert laguerre_poly(1).dummy_eq(-x + 1)
  108. assert laguerre_poly(1, polys=True) == Poly(-x + 1)
  109. def test_spherical_bessel_fn():
  110. x, z = symbols("x z")
  111. assert spherical_bessel_fn(1, z) == 1/z**2
  112. assert spherical_bessel_fn(2, z) == -1/z + 3/z**3
  113. assert spherical_bessel_fn(3, z) == -6/z**2 + 15/z**4
  114. assert spherical_bessel_fn(4, z) == 1/z - 45/z**3 + 105/z**5