Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Setup: Each program will take a single input, the size of the Matrix, N. Your program will allocate and populate the matrix using random numbers.

Setup: Each program will take a single input, the size of the Matrix, N. Your program will allocate and populate the matrix using random numbers. Your program will then start the clock. Run Gaussian Elimination and back subsitution. And then take the stop time. Your program will output the time.

Task: Create Gaussian elimination with back substitution.

Input: Size of square matrix. Size should be 250, 500, 1000, 1500, 2000

Internals: Explicitly or implicitly allocate sufficient memory to a Nx(N+1) floating point Matrix, (or NxN) + N matrices for NUMPY using a random number generator -- populate the Matrix. Perform Gaussian elimination and back subsitution on the Matrix Your routine should have no output other than the runtime

Write in :

Python+ Numpy/pivoting as LU decomposition

Python w/o Numpy

Fortran

Output:

You MUST run each experiment 5 times for each size. This means , you should have 5 runs x 5 sizes x 3 implementations =75 data points.

A table of all or your runs with the average runtime for each AND the standard deviation.

A graph plotting the three average sequences.

A SHORT paragraph comparing the three plots along with your conclusions about the data.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Reliability Engineering Designing And Operating Resilient Database Systems

Authors: Laine Campbell, Charity Majors

1st Edition

978-1491925942

More Books

Students also viewed these Databases questions

Question

How do Excel Pivot Tables handle data from non OLAP databases?

Answered: 1 week ago