I'm still confused about what you want, and I have trouble linking to the right pages. Likely a problem of terminology...
So from memory, and without guarantee that terminology corresponds to English mathematics
- Every hyperplane can be expressed as a linear equation derived from the normal vector
- hence multiple hyperplanes form a System of linear equations
- solutions to those equations are the
intersections of the corresponding hyperplanes
- if you have less equations than variables you get a solution set in the form of a linear equation with free variables.
- the later is just another hyperplane /line of dimension of mentioned free variables, (a point is just a dimension 0 solution, i.e no free variables)
Matrix calculations:
- there are various numeric algorithms to solve equation systems represented as a matrix, like Gauss elimination. (Others might be better in terms of limiting rounding errors)
- they also produce a solution set for under defined systems (less rows than columns)
There are some generalizations applied when dealing with linear optimization methods:
- the equations are just the boundaries of a < "less than" inequalities, i.e. like all points "left" all boundaries are valid solutions,
- the intersections of those boundary equations are the corners of a convex polygon/polytope then, whose body represents solutions
- a further target/weight function might be given to choose the "optimal" solution in this solution set
- finally: sometimes only integer solutions are sought after, while the exact solution is non-integer. (You don't wanna buy a third of an olive)
I hope this helps you finding the words to express your questions
Again I'm rusted, and might have confused some (English) terminology.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.