Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.
160
votes
12answers
25k views
Is JavaScript's Floating-Point Math Broken?
> 0.1 + 0.2 == 0.3
false
> 0.1 + 0.2
0.30000000000000004
Any ideas why this happens?
127
votes
21answers
18k views
Why can't decimal numbers be represented exactly in binary?
There have been several questions posted to SO about floating-point representation. For example, the decimal number 0.1 doesn't have an exact binary representation, so it's dangerous to use the == ...
182
votes
13answers
84k views
What is JavaScript's Max Int? What's the highest Integer value a Number can go to without losing precision?
Is this defined by the language? Is there a defined maximum? Is it different in different browsers?
134
votes
18answers
106k views
How do I calculate distance between two latitude-longitude points?
How do I calculate the distance between two points specified by latitude and longitude?
EDIT: For clarification, I'd like the distance in kilometres; the points use the WGS84 system and I'd like to ...
113
votes
19answers
20k views
Fastest way to list all primes below N in python
This is the best algorithm I could come up with after struggling with a couple of Project Euler's questions.
def get_primes(n):
numbers = set(range(n, 1, -1))
primes = []
while numbers:
...
193
votes
12answers
36k views
Determine Whether Two Date Ranges Overlap
Given two date ranges, what is the simplest or most efficient way to determine whether the two date ranges overlap?
As an example, suppose we have ranges denoted by DateTime variables StartDate1 to ...
31
votes
10answers
35k views
Evaluating a math expression given in string form
I am trying to write a Java routine to evaluate simple math expressions from Strings. Example strings:
"5+3" or "10-40" or "10*3"
I want to avoid a lot of if-then-else statements. How can I do this?
...
58
votes
12answers
13k views
Unique random numbers in O(1)?
The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of ...
393
votes
28answers
71k views
Fastest way to determine if an integer's square root is an integer
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but ...
278
votes
23answers
40k views
Easy interview question got harder: given numbers 1..100, find the missing number(s)
I had an interesting job interview experience a while back. The question started really easy:
Q1: We have a bag containing numbers 1, 2, 3, …, 100. Each number appears exactly once, so there are ...
82
votes
20answers
131k views
Calculate distance between 2 GPS coordinates
How do I calculate distance between two gps coordinates (using latitude and longitude) ?
206
votes
16answers
53k views
How to check if a number is a power of 2
Today I needed a simple algorithm for checking if a number is a power of 2.
The algorithm needs to be:
Simple
Correct for any ulong value.
I came up with this simple algorithm:
private bool ...
66
votes
11answers
36k views
Circle line collision detection
I have a line from A to B and a circle positioned at C with the radius R.
What is a good algorithm to use to check whether the line intersects the circle? And at what coordinate along the circles ...
63
votes
11answers
33k views
The most efficient way to implement an integer based power function pow(int, int)
What is the most efficient way given to raise an integer to the power of another integer in C?
// 2^3
pow(2,3) == 8
// 5^5
pow(5,5) == 3125
38
votes
7answers
10k views
Select random k elements from a list whose elements have weights
Selecting without any weights (equal probabilities) is beautifully described here.
I was wondering if there is a way to convert this approach to a weighted one.
I am also interested in other ...
142
votes
5answers
35k views
Difference between Math.Floor() and Math.Truncate() in .NET
What is the difference between Math.Floor() and Math.Truncate() in .NET?
617
votes
26answers
83k views
Understanding “randomness”
I can't get my head around this, which is more random?
rand()
OR
rand() * rand()
I´m finding it a real brain teaser, could you help me out?
EDIT:
Intuitively I know that the mathematical ...
26
votes
7answers
24k views
A simple algorithm for polygon intersection
I'm looking for a very simple algorithm for computing the polygon intersection/clipping.
That is, given polygons P, Q, I wish to find polygon T which is contained in P and in Q, and I wish T to be ...
107
votes
72answers
55k views
Is mathematics necessary for programming? [closed]
I happened to debate with a friend during college days whether advanced mathematics is necessary for any veteran programmer. He used to argue fiercely against that. He said that programmers need only ...
32
votes
13answers
11k views
Mapping two integers to one, in a unique and deterministic way
Imagine two positive integers A and B. I want to combine these two into a single integer C.
There can be no other integers D and E which combine to C.
So combining them with the addition operator ...
18
votes
1answer
10k views
how to evaluate formula passed as string in php?
Just trying to figure out the proper and safer way to execute mathematic operation passed as string. In my scenario it is values fetched from image EXIF data.
After little research I found two way of ...
75
votes
5answers
8k views
Why can't C++ be parsed with a LR(1) parser?
I was reading about parsers and parser generators and found this statement in wikipedia's LR parsing -page:
Many programming languages can be parsed using some variation of an LR parser. One ...
31
votes
3answers
39k views
Java Integer division: How do you produce a double?
int num = 5;
int denom = 7;
double d = num / denom;
This results in 0. I know you can force it to work by doing
double d = ((double) num) / denom;
but there has to be another way, right? I don't ...
98
votes
13answers
55k views
Algorithm to detect intersection of two rectangles?
I'm looking for an algorithm to detect if two rectangles intersect (one at an arbitrary angle, the other with only vertical/horizontal lines).
Testing if a corner of one is in the other ALMOST works. ...
51
votes
6answers
11k views
How do Trigonometric functions work?
So in high school math, and probably college, we are taught how to use trig functions, what they do, and what kinds of problems they solve. But they have always been presented to me as a black box. If ...
21
votes
19answers
26k views
c# evaluating string “3*(4+2)” yield int 18
Is there a function the the .Net framework that can evaluate a numering expression contained in a string and return the numeric result? IE:
string mystring = "3*(2+4)";
int result = ...
30
votes
7answers
9k views
Is double Multiplication Broken in .NET?
If I execute the following expression in C#:
double i = 10*0.69;
i is: 6.8999999999999995. Why?
I understand numbers such as 1/3 can be hard to represent in binary as it has infinite recurring ...
14
votes
9answers
21k views
How to convert number to words in java
We currently have a crude mechanism to convert numbers to words (e.g. using a few static arrays) and based on the size of the number translating that into an english text. But we are running into ...
26
votes
3answers
22k views
Implement page curl on android?
I was surfing the net looking for a nice effect for turning pages on Android and there just doesn't seem to be one. Since I'm learning the platform it seemed like a nice thing to be able to do is ...
38
votes
8answers
9k views
Fast permutation -> number -> permutation mapping algorithms
I have n elements. For the sake of an example, let's say, 7 elements, 1234567. I know there are 7! = 5040 permutations possible of these 7 elements.
I want a fast algorithm comprising two ...
26
votes
8answers
13k views
nth fibonacci number in sublinear time
Is there any algorithm to compute the nth fibonacci number in sub linear time?
65
votes
17answers
24k views
How does C compute sin() and other math functions?
I've been poring through .NET disassemblies and the GCC source code, but can't seem to find anywhere the actual implementation of sin() and other math functions... they always seem to be referencing ...
9
votes
2answers
3k views
Store orientation to an array - and compare
I want to achieve the following:
I want the user to be able to "record" the movement of the iPhone using the gyroscope. And after that, the user should be able to replicate the same movement. I ...
155
votes
8answers
32k views
How can I ensure that a division of integers is always rounded up?
I want to ensure that a division of integers is always rounded up if necessary. Is there a better way than this? There is a lot of casting going on. :-)
(int)Math.Ceiling((double)myInt1 / myInt2)
30
votes
9answers
5k views
Arbitrary-precision arithmetic Explanation
I'm trying to learn C and have come across the inability to work with REALLY big numbers (i.e., 100 digits, 1000 digits, etc.). I am aware that there exist libraries to do this, but I want to attempt ...
34
votes
9answers
25k views
Calculate Bounding box coordinates from a rotated rectangle, Picture inside
I have the coordinates of the top left Point of a rectangle as well as its width, height and rotation from 0 to 180 and -0 to -180.
I am trying to get the bounding coordinates of the actual box ...
3
votes
5answers
2k views
What is a fast C or Objective-C math parser?
I've looked around quite a bit for a fast math parser in either C or Objective-C Almost all of the libraries I saw are written in C++, and I don't really want to go through the hassle of getting that ...
44
votes
15answers
16k views
Algorithm for finding similar images
I need an algorithm that can determine whether two images are 'similar' and recognizes similar patterns of color, brightness, shape etc.. I might need some pointers as to what parameters the human ...
83
votes
13answers
56k views
Is there a standard sign function (signum, sgn) in C/C++?
I want a function that returns -1 for negative numbers and +1 for positive numbers.
http://en.wikipedia.org/wiki/Sign%5Ffunction
It's easy enough to write my own, but it seems like something that ...
18
votes
5answers
7k views
MathML and Java
I've been doing some research for a mathematical Android related project I'd like to embark upon and I stumbled across for the first time MathML.
Does anyone know of any Java libraries which can do ...
11
votes
6answers
9k views
Algorithm to find which numbers from a list of size n sum to another number
I have a decimal number (let's call it goal) and an array of other decimal numbers (let's call the array elements) and I need to find all the combinations of numbers from elements which sum to goal.
...
16
votes
4answers
14k views
What is the behavior of integer division in C?
i.e. -
int result;
result = 125/100;
or
result = 43/100;
Will result always be the floor of the division? What is the defined bahavior?
If you could point me in the right direction, i would ...
12
votes
9answers
24k views
Double precision problems on .NET
I have a simple C# function:
public static double Floor(double value, double step)
{
return Math.Floor(value / step) * step;
}
That calculates the higher number, lower than or equal to "value", ...
36
votes
7answers
14k views
How to determine if a list of polygon points are in clockwise order?
Having a list of points, how do I find if they are in clockwise order?
For example:
point[0] = (5,0)
point[1] = (6,4)
point[2] = (4,5)
point[3] = (1,5)
point[4] = (1,0)
would say that it is ...
54
votes
22answers
18k views
Best way to represent a fraction in Java?
I'm trying to work with fractions in Java.
I want to implement arithmetic functions. For this, I will first require a way to normalize the functions. I know I can't add 1/6 and 1/2 until I have a ...
23
votes
18answers
4k views
Code Golf: Mathematical expression evaluator (that respects PEMDAS)
I challenge you to write a mathematical expression evaluator that respects PEMDAS (order of operations: parentheses, exponentiation, multiplication, division, addition, subtraction) without using ...
40
votes
10answers
45k views
How to calculate an angle from three points?
Lets say you have this:
P1 = (x=2, y=50)
P2 = (x=9, y=40)
P3 = (x=5, y=20)
Assume that P1 is the center point of a circle. It is always the same.
I want the angle that is made up by P2 and P3, or ...
9
votes
1answer
2k views
Overflow and Carry flags on Z80
I have gotten round to implementing the ADD A,r set of opcodes on my Z80 core. I had a bit of confusion about the carry and overflow flags which I think I've nailed, but I wanted to put it to the ...
128
votes
9answers
56k views
How to sum array members in Ruby?
I have an array of integers.
For example:
array = [123,321,12389]
Is there any nice way to get the sum of them?
I know, that
sum = 0
array.each { |a| sum+=a }
would work.
42
votes
1answer
8k views
How does photoshop blend two images together?
Can somebody please explain to me the image manipulation behind how photoshop blends two images together so that I may reproduce the same affects in my application.