13
votes
Prime factors
Actually there are several more efficent ways to find factors of numbers. One method which is very fast if the input number has two factors very close to its square root is known as …
3
votes
How to convert last 3 digits of number into 0
A shift trick, then:
n >>= 3;
n -= n % (5 * 5 * 5);
n <<= 3;
Is it faster? Doubtful.
But here's a fun fact: gcc doesn't use division/modulus fo …
1
vote
Finding the minimal coverage of an interval with subintervals
Sounds like dynamic programming.
Here's an illustration of the algorithm (assume intervals are in a list sorted by ending time):
//works backwards from the end
int minCard(i …
0
votes
How can I best fill the gaps of my mathematics knowledge?
As someone doing a major in mathematics, I think that mathematics is best learned from a good teacher, with some pressure to succeed (such as tuition fees). I find it easy to learn computing by mys …
0
votes
Do programmers inherently love mathematics?
The term "programmer" encompasses a wide range of people. Some programmers get a thrill from writing machine code by hand, while others will use a drag-and-drop interface (or another sort of labour …
4
votes
Converting a decimal to a mixed-radix (base) number
Pseudocode:
bases = [24, 60, 60]
input = 86462 #One day, 1 hour, 2 seconds
output = []
for base in reverse(bases)
output.prepend(input mod base)
input …
1
vote
cocos2d help find points on a circle
If I understand correctly:
First check the distance between the sprite and the centre of the roulette wheel. This will tell you if the sprite is at the edge of the wheel. (If not, nothing h …
2
votes
Binary math
And in case you don't have a log function handy, you can always see how many times you must divide y by 2 before it becomes 1. (This assumes x is positive and an integer.)
…
-1
votes
Finding area of straight line with graph (Math question but needed for flot)
I am not bad at math, ... I just am not familiar with math beyond 10th grade
This is like saying "I'm not bad at programming, I have no trouble with if …
4
votes
7
votes
SOLVED: Which binary operator or function results in the least collisions?
If (x1, y1) and (x2, y2) are two random pairs of inputs, then let f1 = f(x1,y1) and f2 = f(x2,y2).
What you want to do is minimise
…
8
votes
Merging two statistical result sets
You can get the mean and standard deviation, but not the median.
new_n = (n(0) + n(1) + ...)
new_mean = (mean(0)*n(0) + mean(1)*n(1) + ...) / new_n
new_var = ((var(0)+mean(0)**2)*n …
10
votes
Scale numbers to be <= 255?
The "fairest" linear scaling is actually done like this:
floor(256 * value / (Integer.MAX_VALUE + 1))
Note that this is just pseudocode and assumes floating-point …
4
votes
Line Equation with angle
Starting point you know (x1, x2), end point is (x1 + l * cos(ang), y1 + l * sin(ang)) where l is the length and ang is the angle.
…
4
votes
Trigonometric functions on embedded system
Depends on what you need it for. If you are not very fussed about your angle accuracy (e.g. if to the nearest degree is OK) then just use a lookup table of values. If you don't have an FPU, work in …
