1
vote
4answers
63 views
Looking for examples where knowledge of discrete mathematics is helpful
Inspired after watching Michael Feather's SCNA talk "Self-Education and the Craftsman", I am interested to hear about practical examples in software development where discrete math …
20
votes
19answers
1k views
Code-golf: generate pascal’s triangle
Generate a list of lists (or print, I don't mind) a Pascal's Triangle of size N with the least lines of code possible!
Here goes my attempt (118 characters in python 2.6 using a t …
4
votes
6answers
188 views
“Concrete Mathematics” companion text? (Knuth light IOW)
I'm interested in learning more of the math behind computer science, partly so I can dip into Knuth's TAOCP without my head spinning too much.
I've tried going through Concrete Ma …
8
votes
10answers
208 views
How can I learn higher-level programming-related math without much formal training?
I haven't taken any math classes above basic college calculus. However, in the course of my programming work, I've picked up a lot of math and comp sci from blogs and reading, and …
7
votes
6answers
195 views
Is there an online archive for various math formulas?
What I'm looking for are archives of math formulas organized by topic or purpose etc. Basically an online library of math functions.
For instance, I'm currently working on a proje …
0
votes
1answer
57 views
RSA cryptosystem
Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003 n=3783667 phi=3779776 e= 61
i got stuck finding d could anyone h …
0
votes
2answers
82 views
multiplicative inverse?!?!?
Hi,
I know that an affine cipher substitutes BD with SG. I need to find the encryption formula, in the form y = a x + b, where a and b are coefficients.
From the information above …
-1
votes
10answers
262 views
What number in binary can only be represented as an approximation?
In decimal (base 10), 1/3 can only be approximated to 0.33333 repeating.
What number is the equivalent in binary that can only be represented as an approximation?
3
votes
4answers
321 views
Fastest modular exponentiation in JavaScript
My problem is to compute (g^x) mod p quickly in JavaScript, where ^ is exponentiation, mod is the modulo operation. All inputs are nonnegative integers, x has about 256 bits, and p …
-2
votes
0answers
87 views
how many zeros are at the end of 45^8 * 88^5 (without computing the answer) [closed]
how many zeros are at the end of 45^8 * 88^5? (hint 5 * 2 = 10)
3
votes
2answers
186 views
What does this symbol mean in Discrete Mathematics? <=> [closed]
What does this symbol mean in Mathematics? <=>
0
votes
3answers
168 views
Graph Theory Question
This is a two part question.
In a reunion of 20 people, there are 48 pairs of people that know each other.
a) Justify why there is, at least, one person who knows, at most, othe …
4
votes
3answers
247 views
Uses of Ackermann function ?
In our discrete mathematics course in my university, the teacher shows his students the Ackermann function and assign the student to develop the function on paper.
Beside being a …
7
votes
12answers
830 views
Why is squaring a number faster than multiplying two random numbers?
Multiplying two binary numbers takes n^2 time, yet squaring a number can be done more efficiently somehow. (with n being the number of bits) How could that be?
Or is it not poss …
1
vote
4answers
344 views
How do I build this finite automaton?
I'm studying for a Discrete Mathematics test and I found this exercise which I can't figure out.
"Build a basic finite automaton (DFA,NFA,NFA-lambda) for the language in the alpha …
