Tagged Questions
The equation tag has no wiki summary.
28
votes
22answers
15k views
Equation (expression) parser with precedence?
I've developed an equation parser using a simple stack algorithm that will handle binary (+, -, |, &, *, /, etc) operators, unary (!) operators, and parenthesis.
Using this method, however, ...
22
votes
13answers
38k views
How do I split a string into a list Python?
Learning to program, trying to do this
I have a string like this
2+24*48/32
and I want to split it into a list like this
['2', '+', '24', '*', '48', '/', '32']
I have messed around with ...
20
votes
14answers
2k views
Math equations on the web
What is the best way for me to render Math equations on the web? I am familiar with LaTeX's Math mode.
17
votes
6answers
451 views
The shortest path between two integers by adding or subtracting 5, 7, and 12
Here's the description of this problem:
You are given two integers a and b. You want to find the shortest sequence of operations necessary to transform a into b, where at each step you are ...
11
votes
3answers
546 views
Haskell: Equation Expander 1+(1+(1+(1+(…))))=∞
Does there exist a equation expander for Haskell?
Something like foldr.com: 1+(1+(1+(1+(…))))=∞
I am new to Haskell I am having trouble understanding why certain equations are more preferable than ...
9
votes
6answers
299 views
generating equation png files based on mathematical input
I was wondering what options were available to generate .png based on the kind of input one feeds a graphing calculator.. so
(y^2 + 5x + 3) / ((3x + 3) + 5y + 18)
would return
The only thing ...
9
votes
5answers
3k views
Calculate the position of an accelerating body after a certain time
How do I calculate the position of an accelerating body (e.g. a car) after a certain time (e.g. 1 second)?
For a moving body that it not accelerating, it is a linear relationship, so I presume for an ...
8
votes
1answer
136 views
Same equation, different answers from Pylab and Octave
I am porting code created in octave into pylab. One of the ported equations gives dramatically different results in python than it does in octave.
The best way to explain is to show plots ...
8
votes
2answers
1k views
Looking for a .NET Math Equation Editor and Solver Control
I am looking for a 3rd party custom control that can handle both editing and solving simple math equations (with image generation).
I know about LaTeX and using its syntax to generate images of math ...
7
votes
3answers
840 views
how to handle an asymptote/discontinuity with Matplotlib
Firstly - thanks again for all your help. Sorry not to have accepted the responses to my previous questions as I did not know how the system worked (thanks to Mark for pointing that out!). I have ...
7
votes
4answers
365 views
render users' equations in Python
I am a very new/inexperienced Python programmer. I teach maths and am trying to create a GUI graph-plotting package suitable for schoolchildren.
As well as plotting a graph, I would ideally like to ...
7
votes
7answers
1k views
Looking for a self-contained equation rendering library
Is there such a thing as a small, self-contained library that will render an equation written in a text-based format (e.g. LaTeX or MathML) to an image (either vector or raster)?
It would be ...
7
votes
8answers
4k views
Equation parsing in Python
How can I (easily) take a string such as "sin(x)*x^2" which might be entered by a user at runtime and produce a Python function that could be evaluated for any value of x? Does anyone know of any ...
6
votes
2answers
759 views
Algebra equation parser for java
I need a library to be able to parse an equation an give me the result giving the inputs.
For example something like this:
String equation = "x + y + z";
Map<String, Integer> vars = new ...
5
votes
4answers
316 views
Find roots of a function a x^n + bx - c = 0 where n isnt an integer. Python? Numpy?
I'm writing a program in python and in it I need to find the roots of a function that is:
a*x^n + b*x -c = 0
where a and b are constants that are calculated earlier in the program but there are ...
5
votes
4answers
201 views
Finding the single unknown in an equation
I need a library to be able to parse an equation an give me the result giving the inputs.
For example something like this:
String equation = "5 = 6 / z";
EquationSolver solver = new ...
5
votes
3answers
123 views
Implementing Root-Calculation Function
Implementing math functions for various things is simple enough. int mul(int,int);, int pow(int,int);, even double div(float,float); are easy to do and can be implemented with loops or recursion. ...
5
votes
5answers
1k views
Is it possible to plot implicit equations using Matplotlib?
many thanks again to people who have kindly offered help (especially to Mark for his outstanding response to my previous question).
I would like to plot implicit equations (of the form f(x,y)=g(x,y) ...
5
votes
6answers
3k views
Solve Quadratic Equation in C++
I am trying to write a function in C++ that solves for X using the quadratic equation. This is what I have written initially, which seems to work as long as there are no complex numbers for an answer:
...
5
votes
4answers
317 views
Escaping a character in TeX equation?
I want to use a variable name containing dash in TeX equation. However, dash gets interpreted as minus sign. Anyone any idea of how to escape the character?
5
votes
5answers
615 views
Angular Momentum Transfer equations
Does anyone have any good references for equations which can be implemented relatively easily for how to compute the transfer of angular momentum between two rigid bodies?
I've been searching for ...
4
votes
2answers
182 views
Aiming Calculation at Tower-Defense
I'm building a little tower-defense game with some friends in Java. Now I'm assigned with the logic for towers and at the moment I'm trying to figure out how a tower has to turn to aim and hit a ...
4
votes
2answers
543 views
Javascript equation solve
Is there a javascript library or function that will solve equations for variables. Such as: 9=3+x and solve for x. But will also solve more advanced equations that include sine, cosine, and tangent. ...
4
votes
3answers
625 views
3d imaging: defining an ellipsoid based on 3 given ellipses which are parallel to the Cartesian planes
for a 3d imaging software i am coding:
I need to define an ellipsoid E, which can have any radii, centers and rotations in space
the user interface allows the user to control 3 ellipses, which are ...
4
votes
3answers
890 views
Python function to solve Ax = b by back substitution
Okay, for my numerical methods class I have the following question:
Write a Python function to solve Ax = b by back substitution, where A is an upper triangular nonsingular matrix. MATLAB code for ...
4
votes
2answers
786 views
Typesetting LaTeX fraction terms to be larger in an equation
I have the following formula in LaTeX, based on Fisher's Exact Test. (NOTE: requires the use of the amsmath package for \binom.)
\begin{equation}
P(i,j) = \sum_{x=|N(V_i) \cap V_j|}^{\min\{|V_j|, ...
4
votes
8answers
330 views
Why does C give me a different answer than my calculator?
I've run into an odd problem with this code:
legibIndex = 206.385 - 84.6 * (countSylb / countWord) - 1.015 * (countWord / countSent);
This is the calculation for the legibility index of a given text ...
4
votes
3answers
206 views
Information about the complexity of recursive algorithms
does anyone know about some good sources about counting complexity of recursive algorithms?
somehow recurrent equation isn't really popular title for web page or what, I just couldn't google out ...
4
votes
12answers
10k views
Simplest way to solve mathematical equations in Python
Short Question:
Lets say, I want to solve Project Euler problem 9 using Python and some equation solving libraries.
a + b + c = 1000.
a2 + b2 = c2
How do you do it?
Long Question:
I want to ...
4
votes
5answers
6k views
How do I break a long equation over lines?
I am trying to add an equation in a new line. The problem is that the equation is too long for the line, and I need to break it manually. Otherwise, it just overlaps to the right column, or to the ...
4
votes
1answer
1k views
How can I fit a curve to a histogram distribution?
Someone asked me a question via e-mail about integer partitions the other day (as I had released a Perl module, Integer::Partition, to generate them), that I was unable to answer.
Background: here ...
4
votes
10answers
5k views
Equation Solvers for C++
I need to solve a few mathematical equations in my application. Here's a typical example of such an equation:
a + b * c - d / e = a
Additional rules:
b % 10 = 0
b >= 0
b <= 100
Each number ...
3
votes
4answers
113 views
Algorithm to move mouse from one point to another in a straight line
I am trying to make a small program that will move the mouse from the current position to the given position. Here is a method that i can use which will move the mouse from one point to another but ...
3
votes
6answers
131 views
Equation parser efficiency
I sunk about a month of full time into a native C++ equation parser. It works, except it is slow (between 30-100 times slower than a hard-coded equation). What can I change to make it faster?
I ...
3
votes
4answers
158 views
Where can I find a c# library to solve cubic equations?
I came across this site which solves cubic equations http://www.cubicsolver.com. Does anyone know of an open source c# library that can do the same thing?
3
votes
2answers
158 views
Threes, finding 23 sets of x y z values satisfy the condition x^3+y^3=1+z^3
Now I have completed the finding 23 sets of x y z values satisfy the condition x^3+y^3=1+z^3 & x
int setsFound = 0;
System.out.println("The first 23 sets ordered by increasing x.");
for (long x = ...
3
votes
3answers
289 views
how to put in mathematical equation in C
I've been trying to look up on Google how to put in an equation in my program but wasn't able to find any. How do you include:
x = ( -b + √b2 - 4ac ) / 2a
in the program?
Here's my code:
{
...
3
votes
2answers
107 views
TI-Basic: How do you get an equation as an input?
I was playing around with programming on my TI-84 in math class today and I decide to try to write a program that reads an equation and than does a few things with it. But I'm having trouble reading ...
3
votes
2answers
430 views
LaTeX align stacked summation
I am writing an elementary summation proof and would like to write that
1 + 2 + 3 + ... + n-2 + n-1 + n
+ n + n-1 + n-2 + ... + 3 + 2 + 1
= n+1 + n+1 + n+1 + ...
and so on. I want the symbols to ...
3
votes
2answers
377 views
LaTeX math overline/overrightarrow vertical alignment?
When I use the following:
\begin{equation}
\overline{d} \overline{q}
\end{equation}
the overlines are misaligned, with the line on the q being lower than the line on the d. The same thing happens ...
3
votes
3answers
2k views
number several equations with only one number
How can I number several equations in a align environment using only one number?
For example
\begin{align}
w^T x_i + b \geqslant 1-\xi_i \text{ if } y_i=1, \nonumber \\
w^T x_i + b \leqslant ...
3
votes
5answers
561 views
Solving an inequality for minimum value
I'm working on a programming problem which boils down to a set of an equation and inequality:
x[0]*a[0] + x[1]*a[1] + ... x[n]*a[n] >= D
x[0]*b[0] + x[1]*b[1] + ... x[n]*b[n] = C
I want to ...
2
votes
1answer
39 views
Rating System Won't Average Correctly
I have a rating system that uses the following equation to generate the rating average:
((Old Rating*Old Times Amount)+New Rating)/New Rating amount
However, if the current rating is 3, and it's ...
2
votes
1answer
69 views
Matlab formula equation editor GUI
How i can execute an equation from GUI?
Example:
How i can do this with various type of equation?
Thanks the answers.
2
votes
2answers
116 views
sparse matrix overdetermined linear equation system c/c++ library
I need a library to solve Ax=b systems, where A is a non-symmetric sparse matrix, with 8 entry per row (and it might be quite big). I think a library that implements biconjugate gradient should be ...
2
votes
2answers
150 views
How can you solve equations in PHP?
I'm looking for a generalized equation solver in PHP. This could either be in the form of in-built functionality, a library, or even integration with another language if it comes to it. I am even ...
2
votes
2answers
209 views
Embeddable WYSIWYG equation editor
do you know of a WYSIWYG equation editor, like DragMath, implemented in javascript/mathml or Flash?
I could embed DragMath as well, but I was wondering if there's a way to have a good WYSIWYG ...
2
votes
5answers
225 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
4answers
258 views
How to solve an integral equation in python?
I'm trying to solve this integral equation using Python:
where z ranges from 0 to 1.
The scipy.quad function only provides the numerical solution for a certain interval, but it doesn't provide the ...
2
votes
1answer
138 views
Anyone know any good math equation wysiwyg's for actually letting users submit mathematical answers?
I'm setting up a little math study site and am trying to create an online practice problem system to go with it. Since most of the solutions that will be submitted are going to be pretty complex ...