Discrete mathematics is the branch of mathematics concerned with discrete phenomena -- as opposed to continuous phenomena like geometry, real analysis, physics, etc. Typical discrete math topics are discrete probability, combinatorics, graph theory, algorithms and complexity, but also matrices, ...
0
votes
1answer
23 views
Transitivity on relations
I have a question concerning proving properties of Relations.
The question is this:
How would I go about proving that, if R and S (R and S both being different Relations) are transitive, then R ...
4
votes
3answers
80 views
Folding multiple (discrete) operations into one (continuous) operation
For a simple example, suppose we're checking whether a char c is alphanumeric:
if (48 <= c && c <= 57 ||
65 <= c && c <= 90 ||
97 <= c && c <= 122)
{
...
1
vote
1answer
40 views
Finding maximum score in a “bubble pop” game
[Reposting this from math.stackexchange]
Consider the following game: there is a n×n field, where each cell is randomly coloured in one of m colours. Let a group of cells be a set of same-coloured ...
0
votes
1answer
29 views
Simple combinatorics
Im having some trouble understanding combinatorics and specifically how "choose" works. I have a homework problem that I think I understand but just want to make sure im not completely off.
The ...
0
votes
1answer
57 views
How calculate three phase kilowatt hour from time sampled data [closed]
My problem is I want to calculate three phase power from time sampled data of current and voltages.
My questions:
How can I calculate the energy (unit kilowatt hour) from time sampled data? Are any ...
0
votes
0answers
78 views
Implementing Explicit formulation of 1D wave equation in Matlab [closed]
so the theory is straight forward.
we have:
d^2U/dt^2=c^2 *d^2U/dx^2
discretizing it gives:
{U(i+1,j)- 2U(i,j) + U(i-1,j)}/dt^2 = c^2 *{U(i,j+1)-2U(i,j) + U(i,j-1)}/(dx)^2
where U(i,j) is ...
-1
votes
0answers
36 views
Different forms of morphism in programming languages [closed]
I wonder, we... all of us are working often with the such meaning, which is called polymorphism.
But, as I know, there are not only polymorphism as the a morphic structure.
There are different types ...
-4
votes
1answer
38 views
What are prime factors? Discrete Math [closed]
For all m,n in ZZ, m P n <---> m & n have a common prime factor
8 P 8?
would they be 4 and 2? or would 2 be the prime factor?
-1
votes
0answers
11 views
What are the uses of a transitive closure?
What are the uses of a transitive closure? I can't imagine what it might be used for, besides graphs
0
votes
1answer
53 views
Finding closed form of summation
I'm having hard times solving this problem
What value is returned by the following function? Express your answer as a
function of n. Give the worst-case running time using Big Oh notation.
...
1
vote
2answers
128 views
Solving a recurrence T(n) = 2T(n/2) + sqrt(n) [closed]
Need a little help! This is what I have so far using backward substitution:
T(n) = 2T(n/2) + sqrt(n), where T(1) = 1, and n = 2^k
T(n) = 2[2T(n/4) + sqrt(n/2)] + sqrt(n) = 2^2T(n/4) + 2sqrt(n/2) + ...
-4
votes
0answers
30 views
How to prove this 11^n - 4 ^n divisible by 7 with induction [closed]
11^n - 4 ^n is divisible by 7 for n >= 0 where n is natural number.
I know that to do induction, one needs to prove that base 0 = 0
However, I can't see the induction hypothesis with (m+1)
0
votes
3answers
68 views
Allocate an array of integers proportionally compensating for rounding errors
I have an array of non-negative values. I want to build an array of values who's sum is 20 so that they are proportional to the first array.
This would be an easy problem, except that I want the ...
3
votes
1answer
111 views
A teacher's algorithm
The problem
My mom's a teacher. She recently asked me to write a script that takes a list of students and generates sets of student pairs. Each student should be paired with every other student and ...
-2
votes
0answers
16 views
Number of ways to create string with two specific letters [closed]
How many ways can you construct a string four letters (from 26 alphabet characters) that have both the letters j and k in them?
6
votes
1answer
103 views
Enumerate all partial orders
How to efficiently enumerate all partial orders on a finite set?
I want to check whether a partial order with specified properties exists. To check this I am going with brute force to enumerate all ...
0
votes
1answer
29 views
Calculating the sign of a NxN determinant
Is there a more efficient way to determine the sign (negative or positive or zero) of a determinant than calculating the full value of the determinant and comparing it with zero?
1
vote
2answers
99 views
solving recurrence recurrence
Ok, I'm struggling with Knuth's Concrete Mathematics and there are some examples which I do not understand yet.
J(n) = 2*J(n/2) - 1
it's from the first chapter. Specefically it solves The ...
1
vote
1answer
57 views
recurrence relation: sum of first n even numbers
So base case would be
if n = 1 then 2
I'm trying to figuring out what would be the recursive case.
n= 1 f(1) = 2
n= 2 f(2) = 2 + 4 = 6
n= 3 f(3) = 2 + 4 + 6 = 12
n= 4 f(4) = ...
0
votes
2answers
69 views
how can i write a recursive function of my pseudocode?
Actual code is easier but I'm having trouble finding the base case as well. I was able to write pretty decent pseudocode, but I'm having trouble. I don't know if I'm allowed to ask homework questions ...
-1
votes
3answers
42 views
How do i find the number of times x=x+1 is executed in terms of N?
im also having trouble finding omega(), and theta() as appropriate
x=0;
for k=1 to n
for j=1 to n-k
X=X+1;
2
votes
1answer
144 views
Mathematica or Matlab: Which one should a Computer Science under-graduate choose? [closed]
I regret if you find this question green-horn.But I really need your expert advice to make my choice.I am a CS graduate student whose core subjects are stuff like programming,algorithm ...
1
vote
0answers
119 views
Is the Sobel Filter meant to be normalized?
The x-derivative Sobel looks that way:
-1 0 +1
-2 0 +2
-1 0 +1
Lets say there are two samples of my image which look like that (0=black, 1=white):
0 0 1 1 0 0
0 0 1 & 1 0 ...
0
votes
2answers
73 views
Discrete Maths: Check connectivity of a graph after removing a vertex? Efficient Way?
First: I admit that its a part of programming contest(where nothings on a stake to win or something)
I've come to the following conclusion after reading the problem & tried following algorithm.
...
1
vote
2answers
32 views
What does `locality-sensitive` stands for in locality-sensitive hashing?
What does locality-sensitive stands for in locality-sensitive hashing ? Is there formal definition of this term ?
3
votes
2answers
102 views
Computing unique intersections of subsets
Given a set S = {si : {zj : z ∈ N} }, what is a time-efficient algorithm for computing the unique sets of intersections of the subsets of S?
For background, I am dealing with several versions of ...
-2
votes
2answers
58 views
How to find second point by adding distance in first point? [closed]
In the 2D. I have calculated distance 7.071068 from the coordinate:
(10, 10)
(15, 15)
But now question is that i want to find Second point by Adding distance in First Point. How to Do this?
3
votes
2answers
61 views
Solving the recurrence relation for number of nodes in an AVL tree?
Suppose that we have this recurrence relation, which comes up in the analysis of AVL trees:
F1 = 1
F2 = 2
Fn = Fn - 1 + Fn - 2 + 1 (where n ≥ 3)
How would you solve this recurrence to get a ...
0
votes
1answer
51 views
Max number of particular sequence of elements in 3D array
So for a data structures assignment, I had to initialize each element in a statically allocated 3D array with one of five colors chosen at random. The array was of type ColorEnum, which was declared ...
10
votes
6answers
421 views
Scoring System Suggestion - weighted mechanism?
I'm trying to validate a series of words that are provided by users. I'm trying to come up with a scoring system that will determine the likelihood that the series of words are indeed valid words.
...
-2
votes
2answers
67 views
Floating point number and range of floating point numbers that can be represented by a string
refer to the string of bits 010011110110
We also assume that when the number is stored as a floating point (real) number, 6 of the 12 bits are reserved for the mantissa (or significand)
If the ...
-1
votes
1answer
101 views
DIscrete Math C++
x^2 + y^2 = Z^2. How to test the truth of Pythagoras Theorem in code? My assignment says to read in 10 integers and test if the statement is true or false with each of the ten integers. This is what I ...
0
votes
1answer
111 views
Discrete Math to c++
I'm not sure if I should be asking here or on the math site but I'll give it a shot here. Heres the assignment: A user enters 10 numbers which is the domain D. I need to evaluate the statement:
For ...
0
votes
1answer
51 views
Retrieving coefficients of polynomial from DFT using inverse DFT
I am trying to multiply two polynomials using DFT and I don't know how to get the last bit from the DFT of their multiplication.
So there's p(x) = x - 4, dft -3, i-4, -5, -i-4
And q(x) = ...
4
votes
4answers
184 views
Algorithm that finds the connectivity distance of a graph on uniform points on the unit square
Situation
Suppose we are given n points on the unit square [0, 1]x[0, 1] and a positive real number r. We define the graph G(point 1, point 2, ..., point n, r) as the graph on vertices {1, 2, ..., n} ...
0
votes
1answer
113 views
How do i prove using list induction?
i have to show by list induction over xs that :
reverse (xs ++ ys) = (reverse ys) ++ (reverse xs)
for all list xs and ys.
0
votes
0answers
23 views
making a big graph by composing small shortest closed paths [closed]
I am having following sub graphs and wish to compose all and make a
one bigger graph (say G). After that, I want to select the closed path
where it is passing along the outer vertices of that ...
0
votes
0answers
59 views
Describe a decomposition of an undirected graph into shortest cycles [closed]
Here I am having the below left side graph (say G).
I want to decompose this graph in such a way to get possible all
shortest closed cycles.
I think pictorially this decomposition can be shown ...
0
votes
1answer
49 views
Encrypt the message NEED HELP by translating the letters into numbers..answer is UTTQ CTOA…how?
Encrypt the message NEED HELP by translating the letters into numbers, applying the
encryption function f (p) = (3p + 7) mod 26, and then translating the numbers back into
letters.
Ans: Encrypted ...
0
votes
0answers
17 views
computer representation of integers, Mantissa
So working on an exercise and getting strung up on the Mantissa.
I need to get representation of 1880 = 0100010101110101
It's a 16 bit system, 7 bits are reserved for the mantissa
Steeps I am ...
0
votes
1answer
16 views
Frantions to binary
Learning how to convert numbers from integers to binary.
I'm working on a fraction of .36 the binary for it is .01011... I understand that to get the binary if a fraction you times the number by 2 ...
2
votes
1answer
139 views
splitting of a graph into cycles and then into paths
First of all, I should say I am not familiar with the Graph theory and also my mathematics knowledge is very poor. Anyhow I am using graph concepts for my analysis.
Basically, I am decomposing an ...
-1
votes
1answer
180 views
Three Water-Buckets [closed]
I have to find an algorithm to solve this problem :
There are 3 water-buckets with different size ( C > B > A ).
First C is filled. I have to find all ways to measure water using these water-buckets
...
0
votes
0answers
41 views
How to find c1 in Big Theta?
In the case that we have polynomial:
f(n) = 8n^2 - 4n + 2
We will then have g(n) = n^2
BigTheta(f(n)) = 0 <= c1g(n) <= f(n) <= c2g(n), n > n0
I know that to find c2, we would add all ...
0
votes
1answer
70 views
Instructor's output for Josephus permutation cannot be reproduced
I'm in a data structures class and am unable to reproduce the example data given by an instructor. The problem is the classic Josephus problem with a user supplied number of members, step interval, ...
0
votes
0answers
82 views
Getting Started Watermarking with Discrete HAAR Wavelet Transform
I'm currently learning about watermarking on audio files, specificaly a .wav files. I'm trying to use Discrete Wavelet Haar Transform on it to insert watermark in my case i try to insert text to audio ...
-1
votes
1answer
44 views
(a mod 2*x)-(a mod x) [closed]
I am trying to find the possible values of this expression.
(a mod 2*x)-(a mod x)
I suspect they might be 0 or x, but I'm really not sure. I can't seem to be able to write down a proper argument.
0
votes
2answers
87 views
base b expansion of n algorithm
im reading about base b expansion of n algorithm and this book is really hard to read and understand, i am not sure what the bottom part means...
does it return n or what ? how would you do ...
-2
votes
1answer
62 views
one to one and onto in composite function [closed]
I just want to make sure that I am correct. if we have a composite function f(g(x)).
f(g(x)) is onto if f(x) is onto or both f(x) and g(x) are onto
f(g(x)) is one to one if f(x) is one to one or ...
0
votes
1answer
50 views
algorithm for Chinese postman circuit in a bidirected graph
Im looking for an algorithm that finds a Chinese postman circuit in a bidirected graph. Bidirected graph here is not the symmetric directed graph, but the graph introduced by Edmonds & Johnson in ...

