/MAT3008

Numerical Analysis in Hanyang Univ

Primary LanguageJupyter Notebook

Numerical Analysis

    • Method 1: using 'machar' function in NA library
    • Method 2: calculating eps by finding the largest positive integer n that satisfies 1 + 2^(-n) != 1
  1. in terms of their convergence speeds measured by the number of steps required to stop iterations

    To compare them,

    • Bessel Function

    • y = e^(-x)*cos(x)

    were used.

    • Gauss-Jordan Elimination
    • LU Decomposition
    • Singular Value Decomposition
    • Iterative Approach
  2. Generating psuedo-random numbers using the modular of a prime number, approximate the uniform distribution or some meaningful distribution(normal).

  3. Using vectorization of numpy, it works much faster.

  4. Implemented the General Linear Least Square