Questions on the analytic and numeric equation solving functions of Mathematica (Solve, Reduce, NSolve, FindRoot, DSolve, RSolve, etc.).
-1
votes
0answers
37 views
Constants in NDSolve [closed]
I am trying to solve this system of equations. I am running into an error that I cannot quite figure out. In this code, I use the constants ktotal and xtotal, where ktotal is the total amount of the ...
3
votes
1answer
90 views
Solving an inequality that contains Log expressions
How can I solve the following inequality? I tried the command Reduce, but the computer is still computing it (c is an real number).
...
1
vote
1answer
59 views
How to get a solution set of a nonlinear system of equations?
I'm trying to find the solution set of {x, y} variables for the following system of equations:
...
3
votes
1answer
75 views
Cannot solve system of linear equation sums?
I cannot get mathematica to solve:
The problematic code:
...
5
votes
2answers
190 views
Find all the integer numbers $a$, $b$, $c$, $d$, $e$, $f$, $k$ to this equation have three integer different solutions?
How to choose all integer numbers $a$, $b$, $c$, $d$, $e$, $f$, $k$ belongs to interval $[-10,10]$ to the equation $$\sqrt[3]{a x + b} +\sqrt[3]{c x + d} + \sqrt[3]{e x + f} =k$$ has three integer ...
8
votes
1answer
162 views
Efficient way to solve equal sums $x_1^k+x_2^k+\dots+x_5^k=y_1^k+y_2^k+\dots+y_5^k$ with Mathematica?
I need to solve the system of equations, call it $S_1$, in the integers
$$x_1x_2x_3x_4x_5 = y_1y_2y_3y_4y_5$$
$$x_1^k+x_2^k+\dots+x_5^k=y_1^k+y_2^k+\dots+y_5^k,\;\; k= 2,4,6$$
I used a very ...
1
vote
0answers
54 views
Bounds on random number
I have a Markov Chain Monte Carlo code that uses a chi squared function to fit some data.
I am running into an issue now with getting unrealistic values for some of the free parameters
in the code. ...
13
votes
1answer
210 views
The Orbit and Perigee of the Flamsteed comet
Historical context
This year we have the 330-th anniversary of the Battle of Vienna - one of the great formative events of European history, it took place on September 12, 1683.
Kara Mustafa, Grand ...
-1
votes
0answers
38 views
Evaluating the different calculations
I am a new user. I wonder that either there is possible to evalute different calculations at the same time in Mathematica or not? Can i share the kernels for different calculation at same time?
2
votes
0answers
60 views
Reducing exponential inequalities fails
I am quite stumped by this problem :
Reduce[ N^(x-y) <1 && N > 0 , x, Reals]
gives the expected result
...
-1
votes
1answer
88 views
Solving for variables in a series of nonlinear equations [closed]
I have a nonlinear expression in five variables. I want to use Mathematica to solve for three of the variables. I have a series of points giving values of x an y and I am trying to solve for a,b, and ...
0
votes
0answers
67 views
draw a graph of a polynomial function with variables in the denominator [closed]
I have an equation f(u,z1,z2)=0, which is a long and complicated polynomial function with u in denominator.
...
-1
votes
0answers
59 views
Rearrange this equation so x is the subject [closed]
I have this equation:
y = 0.1x^3-0.2x^2 + 0.4x + 100
Can someone rearrange this equation so x is the subject. Thanks.
0
votes
0answers
43 views
Collect and factor equations with certain terms
Collect user defined terms from a symbolic algebraic expression
...
-2
votes
0answers
62 views
Maximum root by using `FindRoot` [closed]
Assume f[x_, y_,z_] :=
Block[{A}, FindRoot[Abs[r[x, y, z]] - w[z] + 1 == 0, {A, 100}]] where ...
4
votes
2answers
121 views
find where 3 inequalities are simultaneously greater than zero
I have 3 functions, f11[l], f12[l] and f13[l], and I would like to know for which values of l these 3 functions are greater than zero. How do I do it analytically or numerically or graphically in ...
1
vote
1answer
79 views
Prandtl-Meyer function
I'm trying to solve for Mach number based on the given Prandtl-Meyer function, however I keep getting odd error.
Here is my code:
...
1
vote
0answers
81 views
I can't solve this set of equations
I am having trouble solving a set of equations in mathematica. I do not get any errors, but i don't get any answers as well.
I have some restrictions on my parameters and variables in the equations ...
4
votes
3answers
199 views
Solve for the intersection point of 3 surfaces
Basically, I have three 2-torus (tilted) in 3-dimensional Euclidean space. They are expressed by parametric equations:
...
1
vote
2answers
99 views
Count and plot the number of solutions in an interval
I have equations depending on one or more parameters and I want to find and plot the regions in the parameters space in which there are a specific number of solutions.
For definiteness let's ...
1
vote
1answer
171 views
solving a cubic equation
I need to find the minimum $r$ and the maximum $k$ of the following cubic equation for which there does not exist three distinct real roots.
$rx^3-rkx^2+(r+k)x-rk=0$.
Is it possible to find such $r$ ...
1
vote
0answers
6 views
Identify the curve from the sample points [migrated]
I am writing a script which will identify the patterns drawn on the touch-pad of the laptop. I have generated all the points where user moved his finger over the touch-pad using synclient.
Now i ...
-6
votes
0answers
63 views
-5
votes
1answer
43 views
How can I solve this system with Mathematica? [closed]
Systems with 3 equations and 3 unknowns ...
The unknowns are {p,q,j}
...
0
votes
1answer
121 views
How can I solve this nonlinear system with 3 equations and 3 unknown? [closed]
I have this system with 3 equations and 3 unknowns:
...
-3
votes
0answers
56 views
Is there an error in this simultaneous equation? [closed]
I am a novice to Mathematica. Just curious to know why this simultaneous equations isn't working:
...
0
votes
0answers
78 views
Solve equations real and imaginary part separately
For my system of equations, the procedure described in Solving complex equations of using Reduce works no more. How can I separate the real and imaginary part of ...
2
votes
1answer
62 views
Error/warning when using NSolve for simple equation
I am using NSolve to solve an equation, as shown here:
...
2
votes
1answer
58 views
Finding the root of a nested function with small values
I have reduced an error in my program to this line of code:
FindRoot[Nest[# (1 - #) k &, 1/2, 2^4] - 1/2, {k, 3.5}]
It works for $2^1, 2^2, 2^3, 2^4,$ but ...
-3
votes
1answer
131 views
Symbolic Simulations
I have 9 nonlinear equations and 10 unknowns. It is not possible to obtain a numeric solution but I do get a parametric solution. It is useful in my case because I want to observe how parameters (p1, ...
3
votes
0answers
113 views
FindRoot gives a wrong solution which obviously should not be there
I got stuck on FindRoot and I didn't see any similar problem posted, so let me explain what I am trying to do and what problem I meet here.
I try to find roots of a particular function, which in the ...
0
votes
0answers
55 views
Exposing a variable [closed]
This is the basic equation
\[Sigma][T]=E^((-20.7302 + 0.0147986 T) x) (625.646 - 3.50008 T) x^(
1.03651 - 0.000739932 T)
Then there are commands:
...
2
votes
0answers
110 views
Nest for large value of n
I am working on a problem to find the Feigenbaum constant. In this problem I have to get $f^{2^n}(1/2)$ with $f(x) = kx(1-x)$. I use Nest to get $f^{2^n}(1/2)$ but ...
2
votes
1answer
82 views
Solving a system of equations
Mathematica doesn't want to solve my exact system with 3 equations and 3 variables.
...
7
votes
0answers
142 views
Creating and using an explicit piecewise function in a convenient way
I have a set of data points that define a function in the form
curvePts = {data1,data2,...}
where
...
-4
votes
1answer
131 views
2
votes
1answer
89 views
A basic problem with Solve
I have this equation:
4b*Cos[2t]-4a*Sin[2t]==4Cos[2t]+8Sin[2t]
Which I would like to solve. Without using mathematica, you can pretty easily see that a = -2 and ...
3
votes
2answers
202 views
Mathematica does not understand (R^3)^(1/3) is the same as R [closed]
In the output from a calculation in mathematica stands a/((R^3*c)^(1/3)), with c and a ...
2
votes
0answers
73 views
Conditional statements in intial conditions?
This is potentially a daft question, but I thought I'd ask it; I have some material free to diffuse in a boundary between rn and ro; I've been able to get it working nicely for neumann type boundary ...
0
votes
0answers
76 views
Simultaneous Equation Solving Under Nonnegative and Bounding Conditions
I have nonlinear equations to solve parametrically;
...
0
votes
1answer
122 views
solution of differential equation
I have the following code that gives you a phase portrait of a 2d system and I can't understand what means the 3rd and 4th line (sol1 and sol2).
...
0
votes
1answer
48 views
Define variable relationships and dynamically update variables
I would like to define a relationship between 3 variables first and then later when I have filled two of the variables with a number, I would like to extract the value of the last value.
For example:
...
0
votes
1answer
36 views
How to delete duplicate solutions of this system of equations?
I want to find vertices (has integer coordinates) of the triangle $ABC$ with the centorid is $G(1,1)$ and orthocenter is $H(3,3)$. I tried
...
1
vote
1answer
117 views
Solving Intervals
In a recent question I posed, it was noted that by design, Sqrt[ blah] only returns the positive branch, even though we might want to obtain all possible symbolic solutions. So, taking care to avoid ...
5
votes
1answer
87 views
Why is FindInstance failing when I relax a set of constraints?
I'm attempting to use FindInstance to generate coordinate sets for plausible triangles with edge length distance constraints. E.g.:
...
2
votes
1answer
140 views
How to solve this equation with integers as a solution?
I want to solve the equation $$x^y + y = y^x + x$$
with $x$, $y$ are integer numbers. I tried
Solve[x^y + y == y^x + x, {x, y}, Integers]
How to solve the ...
0
votes
0answers
49 views
DSolve::overdet for system of linear PDEs
I would like to resolve symbolically the following equation:
...
4
votes
2answers
131 views
Using RSolve correctly
I am having problems persuading Mathematica to solve even the simplest recurrence relations. As an example, how would you do the following?
...
0
votes
0answers
74 views
Defining and Solving Systems of Equations Using Matrix Tables
I've defined a system of equations, but I been unable to get Mathematica to solve for the individual variables created by matrix tables.
...
1
vote
2answers
110 views
Using FindRoot with an interpolating function
This question bears resemblance to a few other questions on mathematica.SE about finding points of intersection of crossing curves. I know that the guidebook of numerics has an entry about the whole ...


