Questions tagged [systems-of-equations]

This tag indicates that several equations (of some type) must all hold. Do not use alone! Use in conjunction with (linear-algebra), (polynomials), (pde), (differential-equations), (inequalities) or another tag that describes the nature of the equations being considered.

A system of equations is a collection of two or more equations with a same set of unknowns. In solving a system of equations, we try to find values for each of the unknowns that will satisfy every equation in the system.

The equations in the system can be linear or non-linear. Linear equations (ones that graph as straight lines) are simpler than non-linear equations, and the simplest linear system is one with two equations and two variables.

Applications:

In mathematics, the theory of linear systems is the basis and a fundamental part of linear algebra, a subject which is used in most parts of modern mathematics. Computational algorithms for finding the solutions are an important part of numerical linear algebra, and play a prominent role in engineering, physics, chemistry, computer science, and economics.

A system of non-linear equations can often be approximated by a linear system, a helpful technique when making a mathematical model or computer simulation of a relatively complex system.

Other tags in conjunction with this tag should specify, whether the equations of the system are linear, polynomial, ordinary or partial differential equations (or something else). This tag has not fully matured yet. See this meta thread for more opinions and discussion.

8378 questions
0
votes
2 answers

Unique pair of positive real numbers satisfying $x^4 -6x^2y^2 + y^4 = 8$ and $x^3y - xy^3 = 2\sqrt{3}$

(Mandelbrot) There is a unique pair of positive real numbers satisfying the equations \begin{equation} x^4 - 6x^2y^2 + y^4 = 8 \hspace{1em} \text{and} \hspace{1em} x^3y - xy^3 = 2\sqrt{3}\text{.} \end{equation} Determine $x$, writing your answer in…
crxyz
  • 346
0
votes
1 answer

Solve for rational coefficients

Let $n \geq 0$ be and even integer. I have $2n + 5$ data points $(x_i,y_i)$ for $i = 1,\ldots,2n+5$. I wish to find parameters $r, a_{n+1},\ldots, a_0, b_{n-1}, \ldots, b_0, c, d$ (I will call these old params) such that $$y_i = r\sqrt{\frac{x_i^{n…
JEK
  • 47
  • 6
0
votes
3 answers

Rejecting values in multivariable equations

Say we have a system of equations involving more than one variable, for eg: $${x}^2 - {y}^2 = 48$$ $$x - y = 8$$ This can be solved as follows: $$(x-y)(x+y) = 48$$ Since $x-y=8$ , the equation becomes $$8(x+y)=48$$ $$x+y=6$$ Adding ($x-y=8$) and…
0
votes
0 answers

Question on solving a system of equations in general

This seems like a very simple question, and I apologize if that is the case. In trying to prove the result in general, I ran into an issue with something I think I should understand but don't fully. Say I have a system of equations \begin{align*} ax…
Cardinality
  • 1,097
  • 3
  • 7
0
votes
3 answers

Time and Work Intuitive way

I am currently practising some basic time and work questions, and focusing more on doing the stuff in an intuitive way (i.e. in the simplest way possible): I am facing a doubt regarding the way I’m thinking about the question and the way the…
0
votes
1 answer

Solving algebraic simultaneous equations

While calibrating a three-phase system's voltage measurement, I stuck with the following system of equations. $$a_1=b_1x-b_3z\\a_2=b_2y-b_1x\\a_3=b_3z-b_2y$$ I need solution for $x$, $y$, and $z$. If it is helpful, we can use the following facts…
SKGadi
  • 141
0
votes
1 answer

Solve simultaneous equations

I have the following 3 equations and would like to solve for $\lambda_d$. \begin{align} \frac{\lambda_g}{v_y} - \frac{\lambda_d}{v_y} = 8.12866\left(\frac{\nu}{\epsilon Re_d}\right)^{1/2 }\end{align} \begin{align} Re_d = \frac{\lambda_d…
rdemyan
  • 97
0
votes
1 answer

Does the following system of equations have a closed form solution?

I have a system of three quadratic equations in the unknowns $p,q,r$. There are parameters $a,b,c,x,y,z$. Can the solutions for $p,q,r$ be expressed as formulas containing $a,b,c,x,y,z$? The equations…
Riemann
  • 783
0
votes
0 answers

Solving system of equations where variables are multiplied together

I'm trying to figure out a way to solve a system of equations where variables are multiplied together. Fairly similar to this question, however the example used seems simpler than what I want to do. As an example, let's say I have 3 variables and 3…
Dan
  • 101
0
votes
3 answers

How am I supposed to know the form of other possible integer solutions of two variables, given one value of each?

I've been solving example questions from a book,there was some equation in the variables of x and y - $$8x=29+3y$$,I was required to find the minimum ratio between its LCM and GCD ,(x and y are integers). So,I was proceeding well but i got stuck at…
0
votes
0 answers

Does the following equation system have an analytical solution?

I feel something like this must have been asked before, but can't really find it. Context below. $\sum_{j=0}^{M}\left[(e^{-\sqrt{(x-x_{j})^2+(y-y_{j})^2+(z-z_{j})^2}}-e^{-r_{j}}) \frac{-(x-x_{j})}{\sqrt{(x-x_{j})^2+(y-y_{j})^2+(z-z_{j})^2}}…
0
votes
0 answers

Solving a system of equations with additional condition

Suppose I have the following system I want to solve \begin{equation} \begin{bmatrix} -\frac{1}{4} & \frac{5}{12} & 1\\ -\frac{1}{3} & \frac{1}{2} & 1\\ -\frac{5}{12} & \frac{7}{12} & 1 \end{bmatrix}\cdot…
WHN
  • 13
0
votes
0 answers

Equation System help (Isolating)

I've been stuck trying to isolate the variables "x" and "y" in this equation system and was wondering if any one here has the time to solve this for me. y = rotatedPointY - pointX * s - pointY * c + y * c + x * s x = rotatedPointX - pointX * c +…
0
votes
1 answer

Is the system $x = 1 + \frac12(\sqrt{4-y^2} - 1)$ and $y = 1 + \frac12(\sqrt{4-x^2} - 1)$ solvable?

Is it possible to solve an exact solution for this system? WolframAlpha has an exact solution but I can't find a way to arrive at it myself. $$x = 1 + \frac{\sqrt{4-y^2} - 1}{2}$$ $$y = 1 + \frac{\sqrt{4-x^2} - 1}{2}$$
Jeff L
  • 135
0
votes
0 answers

How to solve none symmetry system of equations in Real numbers?

I am trying to solve this system of equations in the set of all real numbers. Solve the system of equations $$\begin{cases} x^3+y (y-z)^2=2, \\ y^3+z(z-x)^2=3, \\ z^3+x(x-y)^2=8. \end{cases}$$ I tried From the given system, we have $$x^3 + y (y…