edu.jas.poly
Class Examples

java.lang.Object
  extended by edu.jas.poly.Examples

public class Examples
extends java.lang.Object

Examples for polynomials usage.

Author:
Heinz Kredel.

Constructor Summary
Examples()
           
 
Method Summary
static void example1()
          example1.
static void example10()
          example10.
static void example11()
          example11.
static void example12()
          example12.
static void example2()
          example2.
static void example3()
          example3.
static void example4()
          example4.
static void example5()
          example5.
static void example6()
          example6.
static void example7()
          example7.
static void example8()
          example8.
static void example9()
          example9.
protected static long getPrime()
           
static void main(java.lang.String[] args)
          main.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Examples

public Examples()
Method Detail

main

public static void main(java.lang.String[] args)
main.


example1

public static void example1()
example1.


example2

public static void example2()
example2.


example3

public static void example3()
example3.


getPrime

protected static long getPrime()

example4

public static void example4()
example4.


example5

public static void example5()
example5.


example6

public static void example6()
example6.


example7

public static void example7()
example7.


example8

public static void example8()
example8. Chebyshev polynomials T(0) = 1 T(1) = x T(n) = 2x * T(n-1) - T(n-2)


example9

public static void example9()
example9. Legendre polynomials P(0) = 1 P(1) = x P(n) = 1/n [ (2n-1) * x * P(n-1) - (n-1) * P(n-2) ]


example10

public static void example10()
example10. Hermite polynomials H(0) = 1 H(1) = 2 x H(n) = 2 * x * H(n-1) - 2 * (n-1) * H(n-2)


example11

public static void example11()
example11. cyclic n-th roots polynomial systems.


example12

public static void example12()
example12. degree matrix;