logo

Crowdly

Browser

Add to Chrome

Course 88790

Looking for Course 88790 test answers and solutions? Browse our comprehensive collection of verified answers for Course 88790 at emas3.ui.ac.id.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Information:

IEEE 754 double precision represents numbers as where mantissa has 52 bits. When dividing two numbers, the quotient's relative error is approximately the sum of the operands' relative errors.

Why does dividing by a large number limit error amplification better than dividing by a small number?

100%
0%
0%
0%
0%
0%
View this question
Information:

Chemical mass balance problems can involve species with concentrations differing by orders of magnitude (e.g., trace elements vs. bulk species), creating systems with highly disparate coefficient magnitudes.

A chemical reactor model has concentrations ranging from

M (trace catalyst) to M (bulk solvent). The mass balance system has coefficients spanning 7 orders of magnitude. Why is partial pivoting critical?
0%
0%
0%
0%
0%
0%
View this question
Information:

The number of additions in forward elimination for Gaussian elimination is approximately for an matrix.

Using the exact formula

for additions, calculate the total for a matrix.
0%
0%
0%
100%
0%
0%
View this question
Information:

Numerical experiments can reveal the impact of pivoting by comparing solutions from the same system solved with and without partial pivoting, measuring the deviation from the true solution.

Two implementations solve

: one with partial pivoting, one without. For a matrix with condition number and smallest diagonal element

, the results are:

  • With pivoting:
  • Without pivoting:

What explains this

surpriserder-of-magnitude difference?
100%
0%
0%
0%
0%
0%
View this question
Information:

Gaussian elimination transforms a system into upper triangular form through row operations. The elimination process proceeds column by column, eliminating entries below the diagonal.

Consider the following modified Python code for Gaussian elimination:

def gauss_elim_v2(A, b):

n = len(A)

for k in range(n-1):

for i in range(k+1, n):

factor = A[i][k] / A[k][k]

for j in range(n):

A[i][j] -= factor * A[k][j]

b[i] -= factor * b[k]

return A, b

What is the consequence of using

range(n) instead of range(k, n) in the innermost loop?
100%
0%
0%
0%
0%
0%
View this question
Information:

LU decomposition handles negative entries the same as positive ones. The sign is preserved through the arithmetic: and can be negative, and their products must reconstruct the original (possibly negative) .

Perform LU decomposition (Doolittle) on:

What is

(row 2, column 1 of )?
0%
0%
0%
0%
0%
0%
View this question
Information:

The computational cost of Gaussian elimination is approximately flops (floating-point operations). LU decomposition has the same cost for factorization, but each subsequent solve (forward + backward substitution) costs only flops.

For a system with

and different right-hand sides, at what value of does LU decomposition become more efficient than repeated Gaussian elimination?
100%
0%
0%
0%
0%
0%
View this question
Information:

An orthogonal matrix satisfies , implying . For the 2-norm, for any orthogonal matrix.

Compute

for the rotation matrix .
100%
0%
0%
0%
0%
0%
View this question
Information:

Computational fluid dynamics (CFD) simulations can generate linear systems with unknowns. Direct methods like LU require time and memory. Iterative methods like GMRES require time for iterations and memory.

A CFD simulation has

variables. The workstation has 128 GB RAM. Can LU decomposition be used?
0%
0%
0%
0%
0%
100%
View this question
Information:

During Gaussian elimination, large-magnitude values progressively become zeros below the diagonal. A heatmap visualization uses color intensity to show magnitude: dark (near zero) vs. bright (large magnitude).

The following heatmap shows the absolute values of matrix entries during elimination. Darker cells indicate values near zero; brighter (lighter) cells indicate larger magnitudes.

C1C2C3C4
R14213
R20324
R30051
R40232

Legend: dark ≈ 0 (eliminated), medium = partial, light = large (unprocessed)

Which best describes the elimination status?

0%
0%
0%
0%
0%
100%
View this question

Want instant access to all verified answers on emas3.ui.ac.id?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome