Questions tagged [gaussian-elimination]

For questions on or related to the technique of Gaussian elimination, used in solving systems of linear equations.

For questions on or related to the technique of Gaussian elimination (also known as row reduction), used in solving systems of linear equations. Gaussian elimination is an algorithm for solving such systems. It is generally seen as a sequence of operations performed on the corresponding matrix of coefficients. These operations are:

  1. swapping two rows;
  2. multiplying a row by a non-zero number;
  3. adding a multiple of one row to another row.

Gaussian elimination can also be used to find the rank of a matrix, to compute the determinant of a matrix, and to determine the inverse of an invertible square matrix. It is named after Carl Friedrich Gauss (1777–1855).

674 questions
0
votes
1 answer

Finding Percentages of Solder Based on Specific Gravity

The Question: Different types of solder are alloys of different proportions of copper, tin and lead. The specific gravity of tin copper and lead are 8, 6 and 14 respectively while the specific gravities of three different solders are 9.6, 9.7 and…
REnt12
  • 1
0
votes
1 answer

Gaussian Elimination with Matrices

Find the value of $k$ such that the following system of equations does not have a unique solution: $$kx+y+2z = 4$$ $$-y+4z = 5$$ $$3x+4y+2z = 1$$ I am allowed to use a calculator. The answer given is: Which I'm guessing has to do with…
0
votes
0 answers

Improving a Numerically Instable 6th Order Polynomial Fit Using Gaussian Elimination

I had a requirement to implement polynomial curve fitting in software, which I have done using multiple regression and Gaussian Elimination with Partial Pivoting. I have done this for 2nd, 5th and 6th order fits but have found that, for my test…
Ed King
  • 101
0
votes
2 answers

Linear Equation Problem Solving

I'm confused on how you can approach this problem using Gauss-Jordan elimination. I’m buying three chemicals, call them A, B and C. One kg (kilogram) of A takes up 100 cc (cubic centimeters) and costs $50. One kg of B takes up 200 cc and costs…
-1
votes
2 answers

Canonical form for $x^2+y^2+z^2+xy+xz+yz$, using Gauss

I need to find a canonical form for the following equation, throughout the Gauss method. $$x^2+y^2+z^2+xy+xz+yz$$ And I'm stuck at this point, because even if I continue to creeate $(a+b+c)^2$ it seems to return same result: $$(x+y+z)^2-xy-xz-yz$$
Daniel
  • 1
-2
votes
1 answer

Three unknowns, the last TWO rows of the matrix contain ALL zeros.

I'm having trouble figuring out how to get the "generic solution" to this matrix by using Gaussian Method by REF. The answer on the back of the book is: $(x,y,\frac{1}{2}x-\frac{3}{2}y)$. I really don't understand the concept behind this answer so…
Yeny
  • 21
-2
votes
1 answer

How to use elimination for five equations?

$y_i = C/x_i ^q$ , i = 5 I am trying to find the average q from different points for y and x but how can i eliminate C I tried elimination but there's 5 equation ,I'm confused can someone help me?
jack
  • 3
1
2