Writing a system of conic equations

  • Thread starter Thread starter Jhenrique
  • Start date Start date
  • Tags Tags
    System Writing
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
Jhenrique
Messages
676
Reaction score
4

Homework Statement


Given a system like: [tex]\\a x^2 + b xy + c y^2 + d x + e y + f = 0 \\g x^2 + h xy + i y^2 + j x + k y + l = 0[/tex] How write it in matrix form?

Homework Equations



The Attempt at a Solution


[tex]\begin{matrix} a x^2 + b xy + c y^2\\ g x^2 + h xy + i y^2\\ \end{matrix} + \begin{bmatrix} d & e\\ j & k\\ \end{bmatrix}\begin{bmatrix} x\\ y\\ \end{bmatrix} + \begin{bmatrix} f\\ l\\ \end{bmatrix} = \begin{bmatrix} 0\\ 0\\ \end{bmatrix}[/tex]
I don't know how!
 
Physics news on Phys.org
A single set of quadratic terms can be written
[tex]ax^2+ bxy+ cy^2= \begin{bmatrix}x & y \end{bmatrix}a & b/2 \\ b/2 & c \end{bmatrix}\begin{bmatrix}x \\ y \end{bmatrix}[/tex]

You should be able to tweak that to give two.
 
This works:

[tex] \begin{bmatrix} x & y & 0 & 0 \\ 0 & 0 & x & y \end{bmatrix}<br /> \begin{bmatrix} a & b/2 \\ b/2 & c \\ g & h/2 \\ h/2 & i \end{bmatrix}<br /> \begin{bmatrix} x \\ y \end{bmatrix} +<br /> \begin{bmatrix} d & e \\ j & k \end{bmatrix}<br /> \begin{bmatrix} x \\ y \end{bmatrix}+<br /> \begin{bmatrix} f\\ l \end{bmatrix} = \begin{bmatrix} 0\\ 0 \end{bmatrix}[/tex]

But why? What are you trying to do, Jhenrique?
 
HallsofIvy said:
A single set of quadratic terms can be written
[tex]ax^2+ bxy+ cy^2= \begin{bmatrix}x & y \end{bmatrix}a & b/2 \\ b/2 & c \end{bmatrix}\begin{bmatrix}x \\ y \end{bmatrix}[/tex]

You should be able to tweak that to give two.

I can't see!

D H said:
This works:

[tex] \begin{bmatrix} x & y & 0 & 0 \\ 0 & 0 & x & y \end{bmatrix}<br /> \begin{bmatrix} a & b/2 \\ b/2 & c \\ g & h/2 \\ h/2 & i \end{bmatrix}<br /> \begin{bmatrix} x \\ y \end{bmatrix} +<br /> \begin{bmatrix} d & e \\ j & k \end{bmatrix}<br /> \begin{bmatrix} x \\ y \end{bmatrix}+<br /> \begin{bmatrix} f\\ l \end{bmatrix} = \begin{bmatrix} 0\\ 0 \end{bmatrix}[/tex]

But why? What are you trying to do, Jhenrique?

I'm trying to write a vectorial equation that represents a system not of linear equations but yes of quadratic equations!

If a linear equation (or a affim equation) can be represent a linear system, so, a quadratic equation can represent a quadratic system.
 
I think Halls means this:

HallsofIvy said:
A single set of quadratic terms can be written
[tex]ax^2+ bxy+ cy^2= \begin{bmatrix}x & y \end{bmatrix}\begin{bmatrix}a & b/2\\b/2 & c \end{bmatrix}\begin{bmatrix}x \\ y \end{bmatrix}[/tex]

You should be able to tweak that to give two.