Jump to content

what are simultaneous equation ? and what do i do with it ?


bimbo36

Recommended Posts

this is a noob question to most of you .. but i would like to have some clarity ...

since i am still following computer oriented numerical methods ....

 

 

:confused:

 

last time , i opened up a thread about polynomials and numerical methods ...

 

some of the things got clearer ... and some of the things got lost in the confusion of discussions ...

 

the last thread was mostly a lot of basic questions about linear and non linear polynomial equations ...

 

some of the things got clearer ... some not that clear ....

 

 

anyway back to the question ...

 

what are simultaneous equation ?

what are systems of linear equations ?

 

 

is it simply a bunch of polynomial equations ??

 

 

Link to comment
Share on other sites

Simultaneous equations are a set of equations that are true for the same variables.

 

example: 2x+y=5 and 3x-2y=4 are simultaneous equations for the same values of x and y.

 

x+2y-3z=10

2x-3y-4z=1

y-3x+z=-8

 

are simultaneous equations for the same values of x,y and z

 

You can use simultaneous equations to solve for multiple variables. For N number of variables you need a minimum of N simultaneous equations.

Link to comment
Share on other sites

ok ..thanks for the reply .. i have many more basic questions and doubts regarding this numerical methods ...

 

first of all ,,.

 

what is the difference between linear equation .. ?

and systems of linear equations ??

 

 

 

 

When we know the degree we can also give the polynomial a name:
0 Constant 7
1 Linear 4x+3
2 Quadratic x^2−3x+2
3 Cubic 2x^3−5x^2
4 Quartic x^4+3x−2

 

this is a simple linear equation ... Linear 4x+3 ... because the degree of the polynomial is 1 ...
then we have many linear equations ... where the degree of the polynomials is still 1 ...

when we have many linear equations where the degree of the polynomial is 1 .. we have the following methods ...

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/12-LinEqs_Direct.pdf

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/13-LinEqs_Indirect.pdf

 

 

now as for non linear equations ...

 

 

When we know the degree we can also give the polynomial a name:
Degree Name Example
0 Constant 7
1 Linear 4x+3
2 Quadratic x2−3x+2
3 Cubic 2x3−5x2
4 Quartic x4+3x−2

 

any polynomial equation of degree greater than one can be called non linear equations ... right ?

and its solving methods starts from the quadratic equation themselves i guess ...

to methods like the mentioned below ...

 

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_1_FixedPoint.pdf

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_2_Bisection.pdf

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_3_Newton.pdf

 

but ...

 

transcendental functions
differentiation
intergration
differential equation

all are non linear equations ... right ???


do i use these methods to solve all of them ??

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_1_FixedPoint.pdf
http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_2_Bisection.pdf
http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_3_Newton.pdf

 

:confused:

Edited by bimbo36
Link to comment
Share on other sites

Just to add to what Janus has said.

 

It is not necessary for all the variables to appear in all the equations for them to be simultaneous, or for you to be able to solve them.

 

Here is an example.

 

s = ut + 0.5ft2

v = u + ft

v2 = u2 +2fs

f = (v-u)/t

s = 0.5(v+u)t

 

These are 5 equations with 5 variables, s, t, u, v and f which describe motion uder constant acceleration.

They are simultaneous, even though t is the time variable, they all apply together.

 

It is indeed necessary to have N equations for N variables, to be able to find a unique solution, if such a solution is possible.

 

But N equations may not be sufficient since a solution may not be possible, even with N equations.

 

Having more than N equations or less than N may also lead you into trouble since you may then have a choice of multiple solutions, even an infinite number.

 

I would advise you to lay aside the issue of linear v non linear until you have thoroughly understood the meaning of simultaneous equations.

Link to comment
Share on other sites

thanks ...

 

i just got it confused with

 

 

 

When we know the degree we can also give the polynomial a name:
Degree Name Example
0 Constant 7
1 Linear 4x+3
2 Quadratic x2−3x+2
3 Cubic 2x3−5x2
4 Quartic x4+3x−2

 

 

a linear equation .. ?

and systems of linear equations ??

 

because i thought the gaussian elimination methods were for ...equations involving many linear equations ...

 

 

 

 

this is a simple linear equation ... Linear 4x+3 ... because the degree of the polynomial is 1 ...
then we have many linear equations ... where the degree of the polynomials is still 1 ...

when we have many linear equations where the degree of the polynomial is 1 .. we have the following methods ...

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/12-LinEqs_Direct.pdf

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/13-LinEqs_Indirect.pdf

 

:confused:

Link to comment
Share on other sites

ok .. i sort of understand simultaneous equations ... and you use numerical methods such as gaussian elimination to solve it ...

 

the types of equations were confusing me ...

 

i thought a bunch of usual polynomial linear equations ...such as these

 

 

Linear 4x+3

 

were the simultaneous equations ....

 

 

 

 

 

 

 

 

let me arrange a few things for my understandings sake ...

 

first let me start with .. the usual equations ...

 

 

 

When we know the degree we can also give the polynomial a name:
Degree Name Example
0 Constant 7
1 Linear 4x+3
2 Quadratic x2−3x+2
3 Cubic 2x3−5x2
4 Quartic x4+3x−2

 

 

then we have simulaneous equations ...which looks like these ...

 

 

x+2y-3z=10
2x-3y-4z=1
y-3x+z=-8

 

 

these two numerical methods can be applied to it if you have to deal with equations like these ...

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/12-LinEqs_Direct.pdf

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/13-LinEqs_Indirect.pdf

 

 

now could somebody please tell me to what sort of equations do i apply the rest of the three methods mentioned below ???

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_1_FixedPoint.pdf

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_2_Bisection.pdf

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_3_Newton.pdf

 

are those methods for ??

 

transcendental functions ??
differentiation ???
intergration ??
differential equation ???

 

 

 

 

 

Link to comment
Share on other sites

but our questions in college were mostly oriented toward c program ...

 

it was called computer oriented numerical methods in C ...

 

the application of the methods were more important , rather than the quality of the questions ....

 

you mean those u v t are like x y z ... and therefore those are simultaneous equations... right ?

 

 

i learned few of those in high school physics class .. but dont remember it well now ... it must have been like 15 years ago ... :ph34r:

 

but after leaving college .. i am still following a subject which i failed badly ... the computer oriented numerical methods in c ....

 

:ph34r:

 

because programming was hard .. mathematics was hard ... the combination of these two subjects were even harder ....

Edited by bimbo36
Link to comment
Share on other sites

can i have a little bit of help ... with this fixed point iteration method ???

 

http://www.ce.utexas.edu/prof/mckinney/ce311k/Overheads/14-NonlinearEquations_1_FixedPoint.pdf

 

http://www.universityofcalicut.info/SDE/BSc_maths_numerical_methods.pdf

 

 

fdf1f44.png

 

fa80b00.png

 

fc07d41.png

 

i am sorry if this looks like a mess ...

 

but fixed point iteration is the last method i am going to follow in numerical methods ..

 

some help or directions please before i completly quit this subject ... ???

 

:confused:

Edited by bimbo36
Link to comment
Share on other sites

i am stuck with methods after methods for solving non linear equations ...

i think i sort of understand how equations are re arranged in fixed point iterations ...

are these methods somehow similiar ??

 

 

fixed point iteration
the bisection method
the newton raphson method
the secant method

 

 

http://www.maths.dit.ie/~dmackey/lectures/Roots.pdf

 

:confused:

 

does these methods always involve re arranging equations ... to fit certain formulas ???

 

i am sorry for making all this look like spam ...

i am also sorry for deviating from the original topic ... but these all looks very similar ....

Edited by bimbo36
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.