Tagged Questions
The discrete-mathematics tag has no wiki summary.
35
votes
23answers
3k 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 trick):
...
25
votes
6answers
6k views
Haskell or Standard ML for beginners?
I'm going to be teaching a lower-division course in discrete structures. I have selected the text book Discrete Structures, Logic, and Computability in part because it contains examples and concepts ...
16
votes
2answers
311 views
De Bruijn-like sequence for `2^n - 1`: how is it constructed?
I'm looking at the entry Find the log base 2 of an N-bit integer in O(lg(N)) operations with multiply and lookup from Bit Twiddling hacks.
I can easily see how the second algorithm in that entry ...
14
votes
10answers
3k 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 possible? This is ...
13
votes
9answers
693 views
Finding the closest fibonacci numbers
I am trying to solve a bigger problem, and I think that an important part of the program is spent on inefficient computations.
I need to compute for a given number N, the interval [P, Q], where P is ...
13
votes
6answers
434 views
Is there any book in Java/Python that explains how the concepts in Discrete math are used while designing programs?
I am looking for a book that explains how a discrete math concept like, say, set theory, is used while doing programming.
My preference is towards books that are easy to understand. For me, that ...
12
votes
4answers
1k views
Is it possible to implement bitwise operators using integer arithmetic?
I am facing a rather peculiar problem. I am working on a compiler for an architecture that doesn't support bitwise operations. However, it handles signed 16 bit integer arithmetics and I was wondering ...
12
votes
5answers
1k views
count of distinct acyclic paths from A[a,b] to A[c,d]?
I'm writing a sokoban solver for fun and practice, it uses a simple algorithm (something like BFS with a bit of difference).
now i want to estimate its running time ( O and omega). but need to know ...
11
votes
11answers
870 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 I genuinely believe ...
11
votes
7answers
1k views
Which algorithm for assigning shifts (discrete optimization problem)
I'm developing an application that optimally assigns shifts to nurses in a hospital. I believe this is a linear programming problem with discrete variables, and therefore probably NP-hard:
For each ...
9
votes
9answers
4k views
8
votes
1answer
203 views
Sum of numbers making a sequence
While watching the rugby last night I was wondering if any scores were impossible given you can only score points in lots of 3, 5 or 7. It didn't take long to work out that any number greater than 4 ...
8
votes
6answers
305 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 project where I have a ...
8
votes
3answers
399 views
Is a given set of group elements a set of coset representatives?
I am afraid the question is a bit technical, but I hope someone might have stumbled into a similar subject, or give me a pointer of some kind.
If G is a group (in the sense of algebraic structure), ...
7
votes
3answers
135 views
How to find multiplicative partitions of any integer?
I'm looking for an efficient algorithm for computing the multiplicative partitions for any given integer. For example, the number of such partitions for 12 is 4, which are
12 = 12 x 1 = 4 x 3 = 2 x 2 ...
7
votes
6answers
215 views
What is the total number of unique values for a double in the range [0.0, 1.0)?
Random.NextDouble() (a Double from the range [0.0,1.0)) is sometimes multiplied with a large Int64 (let Int64 big = 9000000000L), and the result floored to obtain a random Int64 value larger than what ...
7
votes
3answers
264 views
Resource placement (optimal strategy)
I know that this is not exactly the right place to ask this question, but maybe a wise guy comes across and has the solution.
I'm trying to write a computer game and I need an algorithm to solve this ...
7
votes
4answers
567 views
How do programs like mathematica draw graphs and how can I make such a program?
I've been wondering how programs like mathematica and mathlab, and so on, plot graphs of functions so gracefully and fast. Can anyone explain to me how they do this and, furthermore, how I can do ...
7
votes
4answers
852 views
Algorithm for Postage Stamp Problem
The postage stamp problem is a mathematical riddle that asks what is the smallest postage value which cannot be placed on an envelope, if the letter can hold only a limited number of stamps, and these ...
7
votes
6answers
3k views
How do you calculate log base 2 in Java for integers?
I use following function to calculate log base 2 for integers:
public static int log2(int n){
if(n <= 0) throw new IllegalArgumentException();
return 31 - Integer.numberOfLeadingZeros(n);
...
7
votes
5answers
2k 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 is a prime number ...
6
votes
5answers
2k 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 Mathematics but it's a ...
6
votes
3answers
1k 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 benchmark for ...
6
votes
4answers
2k views
Find the “largest” dense sub matrix in a large sparse matrix
Given a large sparse matrix (say 10k+ by 1M+) I need to find a subset, not necessarily continuous, of the rows and columns that form a dense matrix (all non-zero elements). I want this sub matrix to ...
6
votes
10answers
627 views
Where is a good place to brush up on some math?
Math skills are becoming more and more essential, and I wonder where is a good place to brush up on some basics before moving on to some more CompSci specific stuff?
A site with lots of video's as ...
5
votes
1answer
145 views
RSolve not solving discrete Rossler system
I'm working with chaotic attractors, and testing some continuous-> discrete equivalences. I've made a continuous simulation of the Rossler system this way
a = 0.432; b = 2; c = 4;
Rossler = {
...
5
votes
2answers
186 views
Systematic Approach to Programming Algorithms on Discrete Structures
In my algorithms courses, discrete structures are treated in isolation, with algorithms presented independently for each. I am extremely interested in finding a unifying framework that puts each of ...
5
votes
5answers
764 views
How can I check parity without converting to binary?
How can I get the number of "1"s in the binary representation of a number without actually converting and counting ?
e.g.
def number_of_ones(n):
# do something
# I want to MAKE this ...
5
votes
10answers
4k views
Compute a derivative using discrete methods
I am looking for a method to compute a derivate using a discrete and fast method. Since now I do not know the type of equation I have, I am looking for discrete methods analog to the ones that we can ...
4
votes
4answers
193 views
Equations Equality test (in C++ or with Unix tools) (algebra functions isomorphism)
I am looking for C++ open-source library (or just open-source Unix tool) to do: Equality test on Equations .
Equations can be build during runtime as AST Trees, string or other format.
Equations ...
4
votes
5answers
233 views
Expanding Programming Capabilities with Better Math
I have come to the realization that sooner or later I'm going to want to build more complex applications that will make better decisions rather just simple if/else statements.
My math background ...
4
votes
1answer
120 views
Algorithm for two-dimensional rebinning
I have a 12-by-50 array that needs rebinning. The array represents a bivariate probability distribution, p(a,b), where a and b are non-Cartesian coordinates. However, I want to rebin it so that I have ...
4
votes
7answers
617 views
Where are “Special Numbers” mentioned in Concrete Maths used?
I was glancing through the contents of Concrete Maths online. I had at least heard most of the functions and tricks mentioned but there is a whole section on Special Numbers. These numbers include ...
4
votes
1answer
533 views
Computing the second (mis-match) table in the Boyer-Moore String Search Algorithm
For the Boyer-Moore algorithm to be worst-case linear, the computation of the mis-match table must be O(m). However, a naive implementation would loop through all suffixs O(m) and all positions in ...
4
votes
3answers
2k views
Difference between Discrete Structures and Discrete Mathematics
I haven't yet found a good answer. Or any answer, for that matter. I've been asked to teach a discrete structures for CS course, but at the same time make sure it's not a discrete mathematics course ...
4
votes
6answers
1k views
Recommendations for discrete math resources
I recently Graduated from uni in the UK but I only scraped through the Algorithmic and Mathsy units that I was made to do and am now finding that I'd actually like to know how to do some of the stuff ...
3
votes
2answers
110 views
Good algorithm for computing volume or surface area in python
I am trying to compute the volume (or surface area) of a 3D numpy array. The voxels are anisotropic in a lot of cases, and I have the pixel to cm conversion factor in each direction.
Does anyone ...
3
votes
1answer
80 views
Sum of products taking k elements from a set of n elements
Given a set S with n elements, and an integer k. I need to find the sum of products of all n choose k pairs. That is, if S = {1,2,3,4} and k = 2, then I am looking for P = 1*2 + 1*3 + 1*4 + 2*3 + 2*4 ...
3
votes
2answers
137 views
Mathematica exponentiation and finding a specified coefficient
I have the following code, and it does exactly what I want it to do, except that it is ridiculously slow. I would not be so bothered, except that when I process the code "manually", i.e., I break it ...
3
votes
2answers
216 views
Cooley Tukey twiddle factor in a simple python script
I'm reading how the cooley tukey method works, but I have a few problems with the following python script:
def fft_CT_twiddles(x, inverse = False, verbose = False, twiddles = None) :
"""
...
3
votes
3answers
158 views
regular languages with concatenations
the regular languages are closed under the operation:
init(L) = the set of the strings w such that for some x, wx is in L.
EDIT :
x can be any string, a character or empty string
How can I prove ...
3
votes
1answer
278 views
First Order Logic for a complete newbie (book recommendations)?
I signed up for a class that I shouldn't have. So now I'm slightly screwed because I don't understand any of the notation used when my professor was explaining first order logic. I need some book ...
3
votes
2answers
194 views
Maths: Find permutation number using one stack!
It's more a math problem I guess, nothing programming.
Suppose I have a stack and I want to find the permutations of numbers 1,2,3,...n.
I can push and pop.
e.g. if n=2: push,pop,push,pop 1,2 and ...
3
votes
2answers
229 views
Theory of Object Oriented databases
Please recommend some material about implementing Object-Oriented Databases for dynamic languages (interested in Ruby).
I realise that OODBs do not have a good mathematical foundation, but still the ...
3
votes
2answers
492 views
Mergesort running time BigO
Snape’s “Unfriendly Algorithms for Wizards” textbook claims the running time of merge
sort is O(n^4). Is this claim correct?
Solution: Yes. This claim is technically correct, because O(n^4) only ...
3
votes
4answers
191 views
Calculating check digit for ISBN
This isn't actually homework, I'm just looking through some questions in a discrete maths book before I start computer science next week.
Anyway, one of the questions asks me to write a program to ...
3
votes
5answers
430 views
Learning to enjoy maths again
I'm a first year computer science student, having returned several years after finishing high school.
As I delve deeper down the rabbit hole I am gain a greater appreciation for the importance of ...
3
votes
7answers
496 views
Optimization problem - finding a maximum
I have a problem at hand which can be reduced to something like this :
Assume a bunch of random points in a two-dimension plane X-Y where for each Y, there could be multiple points on X and for each ...
3
votes
2answers
1k views
How would you solve this graph theory handshake problem in python?
I graduated college last year with a degree in Psychology, but I also took a lot of math for fun. I recently got the book "Introductory Graph Theory" by Gary Chartrand to brush up on my math and have ...
3
votes
7answers
2k views
Combinitorics Counting Puzzle: Roll 20, 8-sided dice, what is the probability of getting at least 5 dice of the same value
Assume a game in which one rolls 20, 8-sided die, for a total number of 8^20 possible outcomes. To calculate the probability of a particular event occurring, we divide the number of ways that event ...