|
Greek national mathematical Olympiad 2001, Final Round
1. A triangle is inscribed in a circle of radius Let and be the bisectors of the angles and respectively and let the line meet the arc not containing at point Let be the feet of perpendiculars from...
Started by socrates on
, 6 posts
by 2 people.
Answer Snippets (Read the full thread at artofproblemsolving):
1 thanks Greek national ....
Let be a point inside or on the boundary an example for equality .
Consider a rectangle with and Let national mathematical Olympiad 1997, Final Round
1.
Greek national mathematical Olympiad 2000, Final Round
1.
|
|
Is it possible to express (mathematical) infinity, positive or negative, in C#? If so, how?
Started by Alex on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Public const double NegativeInfinity = -1.0 / 0.0; public const double PositiveInfinity = 1.0 / 0.0;
double.PositiveInfinity
double.NegativeInfinity
float zero = 0; float positive = 1 / zero; Console.WriteLine(positive); // Outputs "Infinity" float negative... .
|
|
Since Graduating from a very small school in 2006 with a badly shaped & outdated program (I'm a foreigner & didn't know any better school at the time) I've come to realize that I missed a lot of basic concepts from a mathematical & software perspective...
Started by Jose B. on
, 24 posts
by 24 people.
Answer Snippets (Read the full thread at stackoverflow):
Set theory is the basis Algebra, Combinatorics, Probability....
"Proof by induction" is a core mathematical concept for programmers to know, mathematical induction is very useful in reasoning about loops and recursion.
For a lot of other fields.
|
Ask your Facebook Friends
|
I am currently reading the Algorithm Design Manual , but my mathematical notation has become a little rusty.
What does
mean?
Started by DanDan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It....
It means "n choose k", or in this case, "a choose b" .
Binomial coefficient ? (also, see combination )
Combination.
Combination is the first thing that comes to mind...but without context, there are probably other meanings for the same notation .
|
|
I have a Binary tree for a mathematical expression(infix), i want to convert directly this TREE to a postfix(Stack) can any body suggest the algorithm?
Started by Sam Rudolph on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
TreeNode = ([TreeNode], Data, [TreeNode]) TreeToPostfix....
Execute the algorithm for the left subtree if available and then execute the algorithm for the right subtree and then print the data .
Start with the first node.
Easy, each node is (Left, Right, Data).
|
|
I'm looking for a software to write mathematical equations in, that isn't LaTeX. There's no need to be able to write print them or make images of them, it's mainly for my own personal use. If there's a tool where it's possible to evaluate them also that...
Started by thr on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
A lot of evaluation work of mathematical equations, although I don't know if it can really sub.
|
|
Using Python, how would I go about reading in (be from a string, file or url) a mathematical expression (1 + 1 is a good start) and executing it?
Aside from grabbing a string, file or url I have no idea of where to start with this.
Started by Teifion on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It will handle mathematical statements much more complicated than 1.
A quick google reveals a bunch algebra system (CAS) like SAGE .
Of how to deal with mathematical expressions delivered as strings.
|
|
There are many methods for representing structure of a program (like UML class diagrams etc.). I am interested if there is a convention which describes programs in a strict, mathematical way. I am especially interested in the use of mathematical notation...
Started by supermedo on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
There....
[...]
I believe on the types.
Are inconvenient for expressing the structure since the structure is often not expressable in default mathematical by affiliating programs with the abstract mathematical theories that enable them work.
|
|
Given my previous questions about the the usage of AMPL.
Are there any other programming/scripting languages that are strictly meant for mathmatical processing?
For example: Matlab (it does deviate a bit from a mathematical structure, but its close enough...
Started by steven on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
The IBM Mathematical For mula Tran slating System) is especially suited to numeric computation, medicine and other sciences at least in part because of its built-in array operations and mathematical.
|
|
I'm an Android Developer and as part of my next app I will need to evaluate a large variety of user created mathematical expressions and equations. I am looking for a good java library that is lightweight and can evaluate mathematical expressions using...
Started by CSharperWithJava on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Update: Compared to JEval 0.9.4:
this ran >100 times faster on a small benchmark I tried, on my MacBook the .jar is 6 ... .
I wrote this many years ago; it has the qualities you mention and it's still getting used in new educational applets, apparently .
|