Skip to main content

plotting - How do I feed data points into an equation to solve NUMERICALLY?



I start with this equation and solve it numerically for $z(x,y)$ in the range $1 < x < 5$ and $1 < y < 5$:


$$ \frac{3}{xyz} - 2x - 3y - 5z = 0 $$


Then using the data points of $z$ above, I want to solve for this special condition:


$$ x + y + z = 0 $$


Then I want to plot a graph of $y(x)$. Everything must be done numerically.


eqn1 = 3/(x y z) - 2 x - 3 y - 5 z   == 3
ContourPlot3D[Evaluate[eqn1], {x, 1, 5}, {y, 1, 5}, {z, 0, -5}]

fulldomain =
Table[z /. Solve[eqn1, z, Method -> Reduce], {x, 1, 5, 1}, {y, 1, 5,

1}] ;

eqn2 = x + y + z == 0


special =
Table[y /. Solve[eqn2 /. fulldomain, y, Method -> Reduce], {x, 1, 5,
1}]

ifun = Interpolation[special]

Plot[ifun[x], {x, 1, 5}, Epilog -> Map[Point, special]]

Answer



There is a difficulty with the statement of the problem. Generally the problem can be solved as shown below. In this case there is a stipulation that $1 < x < 5$ and $1 < y < 5$. Unfortunately the solution to the system does not satisfy these constraints (also shown below).


If we agree to use only numerical techniques and pretend that Solve (nor NSolve) will not produce solutions, then FindRoot is the way to find a single solution. The best way to make an interpolating function for y as a function of x is via NDSolve and a differential-algebraic equation. Below I assume that the equations eqn1 and eqn2 actually define y as a unique function of x. In some systems, this will not be true, and one may have to do more work to determine which branch or branches are to be computed.


We have to find the first point of the intersection with FindRoot. The starting point {x, y, z} = {1, 1, 1} for FindRoot may have to be tweaked for other systems. (It's not a terribly enlightened guess for this specific case, either, but this case is easy for FindRoot.)


eqn1 = 3/(x y z) - 2 x - 3 y - 5 z == 3;
eqn2 = x + y + z == 0;

ic = FindRoot[eqn1 && eqn2 && x == 1, {x, 1}, {y, 1}, {z, 1}] (* initial values for x, y, z *)


yIFN = NDSolveValue[
{x'[t] == 1, {x[1], y[1], z[1]} == ({x, y, z} /. ic),
{eqn1, eqn2} /. v : (x | y | z) :> v[t]}, y, {t, 1, 5}]
(*
{x -> 1., y -> 0.890705, z -> -1.8907}

InterpolatingFunction[{{1., 5.}}, <>]
*)

Plot[yIFN[x], {x, 1, 5}]


Mathematica graphics


Note that by the initial value problem given to NDSolve, x and t are the same.


Note also that 0 < y < 1 -- that is, it does not satisfy the constraint in the problem. Here is another view of the problem in x y z space:


Show[
ContourPlot3D[
Evaluate@{eqn1, eqn2}, {x, 0, 5}, {y, 0, 5}, {z, 0, -5},
ContourStyle -> Opacity[0.5], AxesLabel -> Automatic],
ParametricPlot3D[{x, yIFN[x], -x - yIFN[x]}, {x, 1, 5},
PlotStyle -> {Red, Thickness[0.02]}],

PlotRange -> All
]

Mathematica graphics


The intersection of the surfaces defined by eqn1 and eqn2 lies outside the region $1 < x < 5$, $1 < y < 5$.




Edit: On setting up NDSolve


To use NDSolveValue, I needed to change simple variables x, y, z to functions x[t], y[t], z[t]. One could simply retype them, but I tend to do it programmatically (if it's convenient -- as you get more familiar with a system, what seem convenient expands). This saves headaches on typos (for me at least) and updating changes to the equations.


Rules and Patterns (->, :>, etc. see What are the most common pitfalls awaiting new users? for a index of such signs) are fundamental objects. Function definitions are stored as rules in a functions DownValues. Many functions return them, such as FindRoot above. The first two links of this paragraph have tutorials and documentation pages for learning about these important objects.


The rules in ic replace the variables x, y, z by the coordinates of the point of intersection of the two surfaces eqn1, eqn2 with the plane x == 1 that was found by FindRoot:



{x'[t] == 1, {x[1], y[1], z[1]} == ({x, y, z} /. ic),...}
(*
{x'[t] == 1, {x[1], y[1], z[1]} == {1., 0.890705, -1.8907},...}
*)

Since $dx/dt = 1$ and $x(1) = 1$, NDSolveValue will compute the function $x$ to be equal to $x(t) = t$. In other words, t is being used as a dummy variable to represent x along the intersection curve of the two surfaces. One can get more or less of the intersection by changing the integration domain {t, 1, 5} in NDSolveValue to whatever range of x is desired.


To convert the terms of the equations from variables to functions, the following rule was used, which I will display in FullForm:


v : (x | y | z) :> v[t] // FullForm
(*
RuleDelayed[Pattern[v, Alternatives[x, y, z]], v[t]]

*)

RuleDelayed has the form


pattern :> replacement formula

The Pattern I used has the form


name : pattern object

The name is a variable v that is used in the replacement formula to represent an expression that matches the pattern object. The pattern object in this case is the Alternatives pattern


x | y | z


It matches the expression x, the expression y, or the expression z. The replacement formula is v[t]. So when v matches x, the symbol x is replaced by x[t]; when v matches y, the symbol y is replaced by y[t]; and so on. The second line below in the output shows the complete result:


{{eqn1, eqn2}, {eqn1, eqn2} /. v : (x | y | z) :> v[t]}
(*
{{-2 x - 3 y + 3 / (x y z) - 5 z == 3, x + y + z == 0},
{-2 x[t] - 3 y[t] + 3 / (x[t] y[t] z[t]) - 5 z[t] == 3, x[t] + y[t] + z[t] == 0}}
*)

Comments

Popular posts from this blog

plotting - Filling between two spheres in SphericalPlot3D

Manipulate[ SphericalPlot3D[{1, 2 - n}, {θ, 0, Pi}, {ϕ, 0, 1.5 Pi}, Mesh -> None, PlotPoints -> 15, PlotRange -> {-2.2, 2.2}], {n, 0, 1}] I cant' seem to be able to make a filling between two spheres. I've already tried the obvious Filling -> {1 -> {2}} but Mathematica doesn't seem to like that option. Is there any easy way around this or ... Answer There is no built-in filling in SphericalPlot3D . One option is to use ParametricPlot3D to draw the surfaces between the two shells: Manipulate[ Show[SphericalPlot3D[{1, 2 - n}, {θ, 0, Pi}, {ϕ, 0, 1.5 Pi}, PlotPoints -> 15, PlotRange -> {-2.2, 2.2}], ParametricPlot3D[{ r {Sin[t] Cos[1.5 Pi], Sin[t] Sin[1.5 Pi], Cos[t]}, r {Sin[t] Cos[0 Pi], Sin[t] Sin[0 Pi], Cos[t]}}, {r, 1, 2 - n}, {t, 0, Pi}, PlotStyle -> Yellow, Mesh -> {2, 15}]], {n, 0, 1}]

plotting - Plot 4D data with color as 4th dimension

I have a list of 4D data (x position, y position, amplitude, wavelength). I want to plot x, y, and amplitude on a 3D plot and have the color of the points correspond to the wavelength. I have seen many examples using functions to define color but my wavelength cannot be expressed by an analytic function. Is there a simple way to do this? Answer Here a another possible way to visualize 4D data: data = Flatten[Table[{x, y, x^2 + y^2, Sin[x - y]}, {x, -Pi, Pi,Pi/10}, {y,-Pi,Pi, Pi/10}], 1]; You can use the function Point along with VertexColors . Now the points are places using the first three elements and the color is determined by the fourth. In this case I used Hue, but you can use whatever you prefer. Graphics3D[ Point[data[[All, 1 ;; 3]], VertexColors -> Hue /@ data[[All, 4]]], Axes -> True, BoxRatios -> {1, 1, 1/GoldenRatio}]

plotting - Mathematica: 3D plot based on combined 2D graphs

I have several sigmoidal fits to 3 different datasets, with mean fit predictions plus the 95% confidence limits (not symmetrical around the mean) and the actual data. I would now like to show these different 2D plots projected in 3D as in but then using proper perspective. In the link here they give some solutions to combine the plots using isometric perspective, but I would like to use proper 3 point perspective. Any thoughts? Also any way to show the mean points per time point for each series plus or minus the standard error on the mean would be cool too, either using points+vertical bars, or using spheres plus tubes. Below are some test data and the fit function I am using. Note that I am working on a logit(proportion) scale and that the final vertical scale is Log10(percentage). (* some test data *) data = Table[Null, {i, 4}]; data[[1]] = {{1, -5.8}, {2, -5.4}, {3, -0.8}, {4, -0.2}, {5, 4.6}, {1, -6.4}, {2, -5.6}, {3, -0.7}, {4, 0.04}, {5, 1.0}, {1, -6.8}, {2, -4.7}, {3, -1.