The equation-solving tag has no wiki summary.
15
votes
2answers
155 views
Equation Threading: Why the default behavior?
I recently rediscovered a small package by Roman Maeder that tells Mathematica to automatically thread arithmetic and similar functions over expressions such as x == y. Link to Maeder's package.
...
7
votes
3answers
140 views
Is there a built-in Mathematica function to find operators rather than numbers in equations?
How can the following be best accomplished in Mathematica?
In[1] := Solve[f[2,3]==5,f ∈ {Plus,Minus,Divide}]
Out[1] := Plus
6
votes
4answers
123 views
How to manipulate mathematical symbols?
This is more of an "educational" question. :)
Although, I probably would like to do something like this eventually.
So, let's say I got an equation. Could be any kind of equation, as long as it's ...
5
votes
1answer
107 views
C++ library for undetermined equation systems
I have been looking for a library in c++ to solve an undetermined system like this
q is a vector, w, x, y, z variables and a,b,c,d constants.
argmin_q MAX(q) - MIN(q)
s.t.
q[1] = a - w - y
q[2] = ...
4
votes
2answers
213 views
Solving simultaneous equations with R
Suppose I have the following equations:
x + 2y + 3z = 20
2x + 5y + 9z = 100
5x + 7y + 8z = 200
How do I solve these equations for x, y and z? I would like to solve these equations, if ...
4
votes
7answers
641 views
What good libraries are there for solving a system of non-linear equations in C++?
In a C++ application I'm coding, I need to solve a system of non-linear equations (N equations, N unknowns).
The systems I'm solving will be rather small (up to 10 equations/unknowns), so performance ...
3
votes
2answers
239 views
Solving equation. Counting (x,y)
I'm having a trouble with my math:
Assume that we have a function: F(x,y) = P; And my question is: what would be the most efficient way of counting up suitable (x,y) plots for this function ? It ...
3
votes
2answers
127 views
Visualizing Level surfaces
I'm trying to develop a level surface visualizer using this method (don't know if this is the standard method or if there's something better):
1. Take any function f(x,y,z)=k (where k is constant), ...
3
votes
1answer
513 views
What is the most efficient way to solve system of equations containing the digamma function?
What is the most efficient way to solve system of equations involving the digamma function?
I have a vector v and I want to solve for a vector w such that for all i:
digamma(sum(w)) - digamma(w_i) = ...
2
votes
2answers
162 views
Mathematica: FindRoot errors
FindRoot[
27215. - 7.27596*10^-12 x + 52300. x^2 - 9977.4 Log[1. - 1. x] == 0
,
{x, 0.000001}
]
converges to the solution {x -> -0.0918521} but how can I get Mathematica to avoid the ...
2
votes
5answers
119 views
I convert ASCII words into numbers but am stuck trying to decode them. How to convert 1=a, 2=b, 28=ab etc? (psudeocode okay)
So I thought I'd teach myself C++ but I appear to have no problems with the language but I am frankly stupid.
So my idea was this. If I say a=1, b=2, z=26, aa=27 etc, I can map words to numbers, use ...
2
votes
3answers
128 views
How to perform loan equations in Java?
all. I'm trying to make a program that will allow the user to determine different aspects when considering a loan. The first equation is supposed to determine what the monthly payment would be given ...
2
votes
5answers
273 views
How to solve a math equation in a programming language?
I need help to solve this formula ((n * 2) + 10) / (n + 1) = 3, preferably in PHP.
I'm able to solve this equation on paper quite easily however when I try to implement this in PHP, I'm not sure ...
2
votes
3answers
249 views
How can I reference a specific point of my function inside NDSolve?
The problem:
I am trying to solve this diffrential equation:
K[x_, x1_] := 1;
NDSolve[{A''[x] == Integrate[K[x, x1] A[x1], {x1, 0, 1}],
A[0] == 0, A'[1] == 1}, A[x], x]
and I'm getting ...
2
votes
1answer
115 views
Common animation / physics equation repository
For some time, I've been on the lookout for some type of centralized, online repository of commonly used animation / physics equations. Its easy enough to load up some physics framework like Box2d and ...
2
votes
1answer
226 views
Equation solver in Python
Given a simple equation such as:
x = y + z
You can get the third variable if you bind the other two (ie: y = x - z and z = x - y). A straightforward way to put this in code:
def solve(args):
...
1
vote
1answer
80 views
Python semiprime factorization equation solver issues
I am a farmer / novice number theory researcher. I happened to discover some years back a pattern that emerged in the distribution of the prime numbers that related the number of primes to the ...
1
vote
2answers
126 views
fsolve always returning the guess/estimate
I'm using scipy's optimize.fsolve function for the first time to find the roots to an equation. The problem is that whatever number I use as the guess/estimate value is what I get back as my answer ...
1
vote
2answers
68 views
Calculating 4th power differences
i am using Modelica for solving a system of equations for heat transfer problems, and one of them is radiation which is writtenas Ta^4-Tb^4. Can someone give me exclusive answer wether it is ...
1
vote
0answers
324 views
Substituting Periodic Fourier series expansion equation with standing wave equation
I can re-create a periodic signal using Fourier series expansion using
sin and cos waves. But how can I adapt the equation so the equation
will be outputted in the format of a standing wave ...
1
vote
6answers
175 views
Simpler way to find solution of equation
I have following equation:
f(N): N = ((1+lam)^3 )/ ((1-lam)*(1+lam^2));
I need to create a function that finds lam for specified N.
Right now I'm doing it using simple loop:
lam = 0.9999;
n = ...
0
votes
2answers
137 views
Anagram solving error python
I have written an anagram solving algorithm, which does not work.
for word in wordlist: #Checking for equal length
if sorted(word.replace("\n", "")) == sorted(anagram):
...
0
votes
7answers
74 views
Solving a difficult equation with two variables in Java
My assignment says to do the following:
Search2: Search for a solution to x*x + y*y - 12x -10y + 36 = 0. Search from 0 to 10 in both x and y, searching every y value before moving to the next x. Print ...
0
votes
1answer
83 views
Javascript and php-Solving system of equations with one unknown variable
I'm looking for a javascript or php-script that is able to solve a system of equations with one unknown variable x. The equation can be of any kind, i.e. linear, quadratic, cubic etc.
e.g. 10-2*x = ...
0
votes
2answers
435 views
Rebuilding original signal from frequencies, amplitude, and phase obtained after doing an fft
Rebuilding original signal from frequencies, amplitude, and phase obtained after doing an fft.
Greetings
I'm trying to rebuild a signal from the frequency, amplitude, and phase obtained after I do ...
0
votes
1answer
27 views
MAth Equation not working properly [closed]
I have been working on a math equation for 2 days. The whole process is supposed to take the information from a driver and the return the final average. However, for some reason it is not processing ...
0
votes
1answer
179 views
Equation of curve generated by QuadCurve2D in Java?
I have drawn a quadratic curve using the QuadCurve2d in java using start, end and one control points. Is there a way I can find out the equation of this curve? The reason why I need is that at some ...
0
votes
2answers
213 views
Grouping like terms in MATLAB
I'm trying to code a program that solves systems of equations in MATLAB. I was wondering if there is a way to get MATLAB to group like terms and put their coefficients into a matrix? I realize that ...
0
votes
1answer
412 views
matlab how to solve sum function
i have to solve the following formulation in matlab:
i am looking for the beta value, given is a vector full of wavelet coefficients x =(x_1,..,x_L)! How to solve this function in matlab? Can i ...
0
votes
1answer
674 views
How can I numerically solve equations containing Bessel functions in MATLAB?
I have confronted an equation containing Bessel functions of the first type on one side and modified Bessel functions of the second type on the other. I want to know its exact solutions (values of u). ...
-1
votes
4answers
41 views
Formulating the exponential equation given a certain pair of points
I have the following pairs of points:
(0 , 100) ; (0.81 , 41) ; (1.38 , 20) ; (1.75 , 9) ; (2 , 4)
How can I determine the equation of the curve passing through this points?
Thanks very much!
...
-1
votes
1answer
219 views
Solve system of polynomial equations
I have a system consisting of 2 polynomials, in 2 variables, with complex coefficients.
The general case consists of a finite number of pairs of complex numbers.
NSolve[{poly1==0,poly2==0},{x,y}]
...
-2
votes
2answers
54 views
How to find shortest path in both directions of a number with over wrapping?
Let's say I have to pick a number from 0-10.
The number I pick is 6.
The next number I want to pick is 0.
Now the rules are I have to keep incrementing the number by 1 or decrementing it by 1, the ...
-2
votes
2answers
113 views
Solving an equation in Python [closed]
i'm trying to solve an equation but I don't know the way to do this. I've got a vector x wich is actually a matrix type and I would like to solve the equation x.transpose()*v=0 where v is another ...
-2
votes
1answer
131 views
Is there any Good library for solving differentiation equations using differentiation operator?
Good library for solving differentiation equations (not only 1rst order) using differentiation operator?Better written in C/C++/PHP/C#/Actionscript/Javascript
-12
votes
2answers
142 views
Using a while loop to solve a simple equation in Java [closed]
The assignment says:
Search: Use a while loop to find a solution to the equation x*x - 6x - 7 = 0. Start at 0 and search over increasing x values. Print the value of x that satisfies the equation and ...