Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.

learn more… | top users | synonyms (4)

454
votes
24answers
77k 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 ...
437
votes
100answers
26k views

Interview question: f(f(n)) == -n [closed]

A question I got on my last interview: Design a function f, such that: f(f(n)) == -n Where n is a 32 bit signed integer; you can't use complex numbers arithmetic. If you can't design ...
231
votes
28answers
50k 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 ...
187
votes
19answers
18k 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 ...
124
votes
13answers
27k 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 ...
121
votes
8answers
22k 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)
91
votes
6answers
3k views

What are the mathematical/computational principles behind this game?

My kids have this fun game called Spot It! The game constraints (as best I can describe) are: It is a deck of 55 cards On each card are 8 unique pictures (i.e. a card can't have 2 of the same ...
89
votes
21answers
8k 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 == ...
87
votes
5answers
20k views

What's the difference between Math.Floor() and Math.Truncate() in .NET?

What is the difference between Math.Floor() and Math.Truncate() in .Net?
75
votes
11answers
42k views

How to Round Up The Result Of Integer Division

I'm thinking in particular of how to display pagination controls, when using a language such as C# or Java. If I have x items which I want to display in chunks of y per page, how many pages will be ...
72
votes
75answers
25k views

Is mathematics necessary for programming?

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 ...
70
votes
43answers
7k views

Code Golf: Evaluating Mathematical Expressions

Challenge Here is the challenge (of my own invention, though I wouldn't be surprised if it has previously appeared elsewhere on the web). Write a function that takes a single argument that is a ...
69
votes
13answers
36k 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. ...
66
votes
11answers
35k 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?
63
votes
10answers
12k 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 ...
63
votes
27answers
5k views

What are the core mathematical concepts a good developer should know? [closed]

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 ...
60
votes
15answers
4k views

Algorithms based on number base systems?

I've noticed recently that there are a great many algorithms out there based in part or in whole on clever uses of numbers in creative bases. For example: Binomial heaps are based on binary ...
57
votes
17answers
9k 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: ...
56
votes
8answers
10k views

Explain the proof by Vinay Deolalikar that P != NP

Recently there has been a paper floating around by Vinay Deolalikar at HP Labs which claims to have proved that P != NP. Could someone explain how this proof works for us less mathematically inclined ...
51
votes
17answers
4k views

What is the fastest way to compute sin and cos together?

I would like to compute both the sine and co-sine of a value together (for example to create a rotation matrix). Of course I could compute them separately one after another like a = cos(x); b = ...
51
votes
4answers
4k views

Why C++ cannot be parsed with a LR(1) parser?

I were reading about parsers and parser generators when I hit upon this statement in wikipedia's LR parsing -page: "Many programming languages can be parsed using some variation of an LR parser. One ...
46
votes
46answers
6k views

What's the highest-level math you've used in the real world? [closed]

What's the highest-level math you've used in the real world? What did you need it for? Where did you learn it (in school, by yourself)? (Incidentally, I do mean in a programming context, as this is ...
44
votes
16answers
8k views

Is JavaScript's Math broken?

0.1 + 0.2 == 0.3 // returns false 0.1 + 0.2 // returns 0.30000000000000004 Any ideas why this happens?
43
votes
8answers
1k views

What distribution do you get from this broken random shuffle?

The famous Fisher-Yates shuffle algorithm can be used to randomly permute an array A of length N: For k = 1 to N Pick a random integer j from k to N Swap A[k] and A[j] A common mistake that ...
43
votes
15answers
9k 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 ...
43
votes
7answers
19k views

How to check for NaN in python?

float('nan') results in a thingy simply called nan. But how do I check for it? Should be very easy, but i cannot find it.
43
votes
12answers
48k views

How do I calculate distance between two latitude longitude points?

Here's an easy one for you: How do I calculate the distance between two points points specified by latitude and longitude? EDIT: For clarification, I'd like the distance in kilometres, the points ...
42
votes
6answers
2k views

What is it about Fibonacci numbers?

Fibonacci numbers have become a popular introduction to recursion for Computer Science students and there's a strong argument that they persist within nature. For these reasons, many of us are ...
41
votes
10answers
4k views

How does one make a Zip bomb?

This question about zip bombs naturally led me to the Wikipedia page on the topic. The article mentions an example of a 45.1 kb zip file that decompresses to 1.3 exabytes. What are the ...
41
votes
30answers
6k views

Is programming a subset of math?

I've heard many times that all programming is really a subset of math. Some suggest that OO, at its roots, is mathematically based, but I don't get the connection, aside from some obvious examples: ...
40
votes
17answers
72k views

calculate distance between 2 gps coordinates

How do I calculate distance between two gps coordinates (using latitude and longitude)
39
votes
2answers
3k views

Haskell math performance

I'm in the middle of porting David Blei's original C implementation of Latent Dirichlet Allocation to Haskell, and I'm trying to decide whether to leave some of the low-level stuff in C. The following ...
39
votes
20answers
9k 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 ...
39
votes
10answers
6k 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 ...
38
votes
14answers
4k views

Mathematics for Computer Science Students [closed]

To cut a long story short, I am a CS student that has received no formal Post-16 Maths education for years. Right now even my Algebra is extremely rusty and I have a couple of months to shape up my ...
37
votes
10answers
2k views

The inverse Fibonacci problem?

There are dozens of ways of computing F(n) for an arbitrary n, many of which have great runtime and memory usage. However, suppose I wanted to ask the opposite question: Given F(n) for n > 2, ...
37
votes
7answers
7k 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 ...
36
votes
8answers
925 views

Optimizations for pow() with const non-integer exponent?

I have hot spots in my code where I'm doing pow() taking up around 10-20% of my execution time. My input to pow(x,y) is very specific, so I'm wondering if there's a way to roll two pow() ...
36
votes
14answers
2k views

Which Mathematics should I study to be a better programmer/developer? [closed]

Possible Duplicates: How much mathematics and physics should a programmer know? What are the core mathematical concepts a good developer should know? I would like to study mathematics to be ...
36
votes
10answers
18k views

Circle line collision detection

I have a line from A to B and a circle positioned at C with the radius R. This is in two dimensions. Which is a good algorithm to use to check whether the line intersects the circle? And at what ...
36
votes
32answers
5k views

Why can't programs be proven?

Why can't a computer program be proven just as a mathematical statement can? A mathematical proof is built up on other proofs, which are built up from yet more proofs and on down to axioms - those ...
35
votes
8answers
2k views

The “guess the number” game for arbitrary rational numbers?

I once got the following as an interview question: I'm thinking of a positive integer n. Come up with an algorithm that can guess it in O(lg n) queries. Each query is a number of your choosing, ...
35
votes
10answers
2k views

Maths in Programming - The Developer's guide [closed]

Possible Duplicate: Useful math for programmers I'm a 22 year old ASP.NET/C#/Front-End developer with roughly 5.5 years experience. Unlike some (well probably most) of you, I didn't go to ...
35
votes
21answers
6k views

Useful math for programmers

In your experience as a practicioner, what's the most useful math knowledge for a programmer? If "it depends", what's your field of expertise and what do you need there most as far as math is ...
34
votes
4answers
1k views

Code Golf: Countdown Number Game

Challenge Here is the task, inspired by the well-known British TV game show Countdown. The challenge should be pretty clear even without any knowledge of the game, but feel free to ask for ...
34
votes
3answers
10k views

Integer division in JavaScript

In JavaScript, how do I get: the whole number of times a given integer goes into another? the remainder?
34
votes
18answers
4k views

Basic Math Book for a Programmer [closed]

After a decade(s) of writing web applications, I have realized that I have forgot most of my high school (not to mention college) math. Now I would like to try to learn the math all over again, ...
34
votes
17answers
14k views

Performance of Java matrix math libraries?

We are computing something whose runtime is bound by matrix operations. (Some details below if interested.) This experience prompted the following question: Do folk have experience with the ...
33
votes
13answers
1k views

Is the time complexity of the empty algorithm O(0)?

So given the following program: Is the time complexity of this program O(0)? In other words, is 0 O(0)? I thought answering this in a separate question would shed some light on this question. ...
33
votes
10answers
15k 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

1 2 3 4 5 144