File:CubicCurve.svg
Description |
English: This is a collection of cubic curves, the equation (with parameters a and b) see below. Region shown: [-5,5]²
Русский: Некоторые виды кубик, уравнение см. ниже. Показан регион [-5,5]²
|
||
Date | |||
Source | Own work | ||
Author | Tos | ||
Permission (Reusing this file) |
|
||
SVG development | Category:Valid SVG created with Mathematica code#CubicCurve.svg ![]() Category:Translation possible - SVGThis file uses embedded text that can be easily translated using a text editor. | ||
Source code | Mathematica codeGraphicsArray[
Table[
ContourPlot[
4 x^3 - a x^2 y + 9 x y^2 - 9 y^3 - 36 x + 36 y + 10 b == 0,
{x, -5, 5},
{y, -5, 5},
FrameTicks -> None,
ContourStyle -> {Blue, Thick}
],
{a, -4, 12, 4},
{b, -8, 8, 4}
]
]
|