Tagged Questions

In mathematics, an expression is a finite combination of symbols that is well-formed according to rules that depend on the context. Symbols can designate numbers (constants), variables, operations, functions, and other mathematical symbols, as well as punctuation, symbols of grouping, and other syntactic symbols.

learn more… | top users | synonyms

17
votes
3answers
471 views

How do you judge the (real world) distance of an object in a picture?

I am building a recognition program in C++ and to make it more robust, I need to be able to find the distance of an object in an image. Say I have an image that was taken 22.3 inches away of an 8.5 ...
5
votes
2answers
65 views

Why does Excel translate `=10**-2` to `=0.1`?

Try pasting =10**-2 into a cell in MS Excel. After pressing Enter, it turns it to =0.1. I can't seem to find any documentation for **, but it appears to be a pretty odd exponentiation-like operator ...
5
votes
4answers
263 views

Testing equivalence of mathematical expressions in Python

I have got two strings in Python, A m * B s / (A m + C m) and C m * B s / (C m + A m) that are both equivalent functions of the unordered set (A, C) and the unordered set (B). m and s indicate ...
5
votes
2answers
1k views

Mathematical expression (string) to number in Java

I'm trying to find something like Java Embedding Plugin (JEP) that can evaluate a mathematical formula (string) and give back the answer. But it should also calculate a variable, for example: ...
5
votes
4answers
389 views

FullSimply Inequalities and then rearranging them in Mathematica 7

I am using Mathematica 7 in the notebook interface and I want to rearrange an inequality so that I get a certain variable on one side. For eg. FullSimplify[x^3+L+r>3x^3+2r] Gives L > r + 2 ...
3
votes
5answers
121 views

How to display 2^3 in Javascript

I am building an app using appcelerator which needs to display a mathematical expression e.g 2^3 but with the 3 being a small number above the 2. Is there a way to express mathematical expressions in ...
3
votes
4answers
407 views

Evaluating mathematical expressions in Python

I want to tokenize a given mathematical expression into a parse tree like this: ((3 + 4 - 1) * 5 + 6 * -7) / 2 '/' / \ + ...
2
votes
5answers
84 views

Check if string is following ISBN-13 in Java

Im trying to check if a string (important that it is a string) that im reading is correct accoring to the rules of ISBN-13. I found a formula For example, the ISBN-13 check digit of ...
2
votes
4answers
178 views

How to create a notebook with a properly formatted expression

I have a Mathematica expression generated by another program, which I would like to open in a notebook, properly formatted. For instance, the other program generates this: ...
2
votes
3answers
139 views

What is the difference between Mathematica Rules and the objects returned by GraphEdit?

This is actually a two-fold question. First: as someone coming from an OO programming background, I find Mathematica's use of lists as the basis of everything a bit annoying. So here is how a ...
2
votes
2answers
202 views

Assistance with Mathematica: using /. replace method with IF[] conditional

Let me first state that I am a Mathematica novice and this question is probably easily answered, but I have so far not been able to find any help for this specific problem scouring the internet. Here, ...
2
votes
2answers
231 views

Adding Conditionals & Functions to a Math Parser

I have a binary tree based mathematical expression parser I built, which works great for 'normal' math, like: (3.5 * 2) ^ 1 / (1 << 6). however, I would like to expand it a little to add a ...
1
vote
1answer
48 views

How to get a proper imathas link for a given mathematical expression string?

For example for a string x + 1/y I want to generate this url with expression: http://www.imathas.com/cgi-bin/mimetex.cgi?\displaystyle\blue{x}%2B\frac{{1}}{{y}} Is there any tool doing this job in ...
1
vote
6answers
123 views

How to get the size of a number in .net?

I want with a given double number to return its "size" (known as |number|, or number of digit without the numbers after the dot), for example: 12.324654 -> 2 12 -> 2 0.99 -> 0 1.01 -> 1 ...
1
vote
1answer
118 views

Mathematical equation for number of valid sequences (having no two 1's together) of N-bit number

I have encountered this interview puzzle and want to know its accurate answer. You can generate 2^n different binary sequence of a n-bit number. Among these sequences the sequence having two 1's ...
1
vote
1answer
70 views

Proportionality of parameter and mathematical expression

What is the best way to check if a parameter increase in a mathematical expression increases or decreases the expression as a whole (in Python, preferably SymPy)? Assumptions: all parameters are ...
1
vote
2answers
42 views

Amount of steps from one field in a grid to another, orthogonally?

How do I calculate the amount of "steps" there is from one field to another in a grid, moving orthogonally? I am implementing an A* pathfinding system for a game that I am developing, and this simple ...
1
vote
5answers
206 views

C# - can I define a function on the fly from a user-supplied string formula?

I can define a func with a lambda expression as in: Func <int, int, int> Fxy = ( (a,b) => a + b ) ); // Fxy does addition But what if I wanted to allow the user to supply the r.h.s. of ...
1
vote
2answers
150 views

Translate some metalanguage into Java

I'm about to make kind of converter from math expression into java code. Are there any existing converters? Which technologies should I use? I have already investigated XTEXT, but I think it's a ...
1
vote
2answers
266 views

C# expression trees for a calculator

I'm a C# newbie. I want to write a calculator app in C#. Would C# expression trees be a good way to go for the guts of it? (That is, the part that takes a series of keypresses and turns them into ...
1
vote
2answers
1k views

Is there a way to override LaTeX's errors about double subscripts and superscripts?

Minor point about LaTeX that bothers me. When one writes a^b^c, a_b_c or a'^b in math mode, LaTeX gives an error message complaining about multiple super/subscripts. This is particularly ...
1
vote
3answers
1k views

Evaluating Mathematical Expressions using Lua

In my previous question I was looking for a way of evaulating complex mathematical expressions in C, most of the suggestions required implementing some type of parser. However one answer, suggested ...
0
votes
1answer
31 views

Calculating opacity value mathematically

How is opacity calculated mathematically? There is opacity value in Photoshop, CSS etc. Actually this opacity is the transparent behavior of a layer. That we all know. But how is it calculated ...
0
votes
2answers
196 views

How to convert mathematical expressions into C statement?

How to convert each of the following mathematical expressions to its equivalent statement in C? 1 / (x^2 + y^2) square root of (b^2 - 4ac)
0
votes
1answer
219 views

Mathematica function with multiple IF[] conditionals

I have here a complicated bit of code that is not pretty nor easy to follow, but it represents a simplification of a larger body of code I am working with. I am a Mathematica novice and have already ...
0
votes
0answers
196 views

display location on isometric world map

I want to display a point with a latitude and a longitude value in an isometric world map using JavaScript and jQuery. For a rectangular map, I use the following code to calculate the x and y ...
0
votes
0answers
50 views

how to map mathematical notations in to programming constructs

Is there any guide on how to map mathematical notations for eg List Comprehension in to programming constructs, the link illustrates the concept in mathematical and programming perspective.
0
votes
1answer
249 views

Perl: String manipulation surrounding a mathematical expression

I´m learning Perl, I would like to surrounded an expression like that function1(mathematical_expresion1)*function2(mathematical_expresion2) Where 'function1'and 'function2' could be whatever word ...
0
votes
2answers
345 views

How to evaluate the mathematical expression from the string in J2ME

How to evaluate the mathematical expression from the string in J2ME. For example a string containing "2*4".From the string i want evaluate the mathematical expression and get the result as 8 ...
0
votes
1answer
188 views

mathematical operators in htaccess file

is it possible to use mathematical operators in .htaccess file? for example i want to redirect a page with id=100 to a page with id=30 ?
0
votes
0answers
262 views

Matlab variable type help

How to convert variable of 'struct' type to a matrix in Matlab? How do we convert the q_yearly_w, in the code below, which is of type 'struct' to a matrix with which we can perform normal ...
0
votes
3answers
901 views

Dijkstra’s algorithm and functions

the question is: suppose I have an input function like sin(2-cos(3*A/B)^2.5)+0.756*(C*D+3-B) specified with a BNF, I will parse input using recursive descent algorithm, and then how can I use or ...