A mathematical proof is any mathematical argument which demonstrates the truth of a mathematical statement. Informal proofs are typically rendered in natural language and are held true by consensus; formal proofs are typically rendered symbolically and can be checked mechanically. "Proofs" can be ...
-1
votes
0answers
11 views
Undecidability of detecting whether a TM has only mechanically detectable loops [closed]
This might be a bit of an abstruse question, but it's something I've been trying to prove.
I'm trying to show that it is undecidable whether a given Turing Machine is a member of the set of all ...
5
votes
1answer
71 views
Idiomatic Proof by Contradiction in Isabelle?
So far I wrote proofs by contradiction in the following style in Isabelle (using a pattern by Jeremy Siek):
lemma "<expression>"
proof -
{
assume "¬ <expression>"
then have ...
0
votes
2answers
205 views
What is an idiomatic style to do an Isabelle proof by cases? [closed]
I have an Isabelle proof structured as follows:
proof (cases "n = 0")
case True
show ?thesis sorry
next
case False
show ?thesis sorry
qed
The first case is actually quite long, so when ...
1
vote
2answers
45 views
Is there a way to prove a program has no bug?
I was thinking about the fact that we can prove a program has bugs. We can test it to assess that it is more or less bug resistant.
But is there a way (even theoretically) to prove that a program has ...
-4
votes
1answer
47 views
longest common subsequence with linear memory usage [closed]
I'm trying to find an algorithm which uses linear space of memory for:
Given two strings x and y over an arbitrary alphabet, determine their longest common sub sequence.
3
votes
1answer
82 views
Mathematical proof for a binary tree
I am not hiding this is a part of my homework but I've tried enough before posting here.
So...
I need to prove for a binary tree that a node k have its left child on 2k and right child on 2k + 1 ...
0
votes
1answer
44 views
Converting propositional logic argument to Prolog
How do I translate the following argument into Prolog? It seems like it doesn't need predicates. (Note: I use & for a conjunction and | for a disjunction.)
G -> (H & J)
(H | J) -> S
...
2
votes
2answers
126 views
Minimum count of numbers to be inserted in [a,b] such that GCD of 2 consecutive numbers is 1
This question was asked in TopCoder - SRM 577. Given 1 <= a < b <= 1000000, what is the minimum count of numbers to be inserted between a & b such that no two consecutive numbers will ...
0
votes
2answers
31 views
Proving non-existence of an infinite inductive value in Coq
Suppose I have a very simple inductive type:
Inductive ind : Set :=
| ind0 : ind
| ind1 : ind -> ind.
and I'd like to prove that certain values can't exist. Specifically, that there ...
-1
votes
1answer
33 views
Prove max(O(f(n)), O(g(n)))=O(max(f(n), g(n))
Prove max(O(f(n)), O(g(n)))=O(max(f(n), g(n))
It does make sense, but so far I don't have any idea how to actually prove it.
Any input would be appreciated.
-2
votes
0answers
19 views
Prove or disprove asymptotic relation of two sets [closed]
I am looking for a while to prove or disprove:
O(f(n)-g(n)) ⊂ |O(f(n)) - O(g(n))|
where || is absolute value. Note that ⊂ is needed and not ⊆
I assumed the a subtraction operator between 2 O() means:
...
0
votes
2answers
17 views
Proving log(n!) is in Ω(n log(n))
The total cost of our operations are: Σ(i=1 to n) log(i).
Prove that this sum is Ω(n log(n)).
I'm a little bit stuck on how to go about proving this. I realize the summation comes out to be ...
1
vote
2answers
116 views
How do I display a proof tree with HTML,CSS and/or Javascript?
I want to display a proof tree in the style of a natural deduction within a web page.
I will get the data from a JSON file.
Whats the best way to display something like this?
Is it possible only ...
-1
votes
0answers
11 views
Showing transitivity of pspace? [closed]
If B is an element of P-Space and A is an element of P-Space-complete, and A polynomial reduces to B, then B is an element of P-Space-complete.
I am trying to prove this, but I don't understand ...
0
votes
1answer
206 views
Logic deduction with Fitch system
I was working through some logic and I found a difficulty I can't solve,
How can I proof from the premise p=>q, that ¬q=>¬p?
Thank you
0
votes
0answers
27 views
Proof that the Dominating Set is NP-Complete
Take a triangle with vertices u,v,v'. As all triangles are, it is strongly connected.
Correct me if I'm wrong, but it has a dominating set of size 1.
As I work through the proofs to try and reduce ...
0
votes
2answers
176 views
Number of binary search trees over n distinct elements
How many binary trees can be constructed from n distinct elements? And how can we find a mathematically proved formula for it?
Example:
If we have 3 distinct elements, say 1, 2, 3, there
are 5 ...
0
votes
0answers
57 views
Reduction from Maximum independent set to Dominating set to prove the Dominating set is NP-complete
I know of the reduction from the Vertex cover to Dominating set.
However, I was seeing if I could get a reduction from the maximum independent set problem straight to the Dominating set problem in ...
1
vote
1answer
44 views
Proof of Loop Invariant and Algorithm
How would I get a loop invariant and prove it for the following algorithm.
power(x,y):
z = 1
m = 0
while m < y:
z = z*x
m = m+1
return z
2
votes
1answer
56 views
How can I prove the correctness of the following algorithm?
Consider the following algorithm min which takes lists x,y as parameters and returns the zth smallest element in union of x and y.
Pre conditions: X and Y are sorted lists of ints in increasing order ...
3
votes
2answers
158 views
Can someone help me with this proof using the pumping lemma?
I just started reading about the pumping lemma and know how to perform a few proofs, mostly by contradiction. It is only this particular question which I don't seem to find an answer for. I have no ...
4
votes
3answers
99 views
Apply a method if and only if it solves the current goal
Sometimes, when I’m writing apply-style proofs, I have wanted a way to modify a proof method foo to
Try foo on the first goal. If it solves the goal, good; if it does
not solve it, revert to ...
1
vote
1answer
58 views
Why is there only one possible implementation of the *id* function?
I have seen multiple times the claim that one can proof that a function with type signature
α → α
can only be implemented by returning the argument, because we don't know anything about the type ...
1
vote
1answer
56 views
Z3Py: Generating Abstract Formulas From A System Of Equations
My Example: system of equations
Pseudo-Code Constraint Base
a = b+c
∧ e = a*c
∧ a = +2 ; some replaceable concrete values
∧ c = +18
Solution
b = -16
∧ e = -32
The Information I Want
...
0
votes
4answers
73 views
How can I prove by induction that the second of these two algorithms is faster?
I have two algorithms.
A. Solves problem in 2^n seconds.
B. Solves problem in n^2 + 1,000,000 seconds.
How can I inductively prove that B is faster than A.
I'm told that 2^n > 2n+1 for n>2 might ...
0
votes
1answer
31 views
How can I prove the following logic statement deductively? [closed]
I have the following logic statement:
If (P OR Q) and
(P => Q) and
(Q => P)
Then
(P AND Q)
I'm told to use Dorothy's Law, which is:
If (A => B)
Then (A OR B => B)
I can't ...
2
votes
1answer
76 views
Are there flaws in my Greedy algorithm?
I was just wondering if you could see any flaws or problems with my Greedy algorithm I've come up with to solve this problem. The problem is:
They're a set of employees
Each employee has one work ...
0
votes
1answer
126 views
compress 2-bit numbers and save 1 bit use compression scheme
I want to create a compression scheme for 2-bit numbers such that it will reduce the size of any sequence by at least one bit. How can I prove this is not possible?
7
votes
3answers
252 views
What laws are the standard Haskell type classes expected to uphold?
It's well-known that Monad instances ought to follow the Monad laws. It's perhaps less well-known that Functor instances ought to follow the Functor laws. Nevertheless, I would feel fairly confident ...
0
votes
0answers
44 views
Mathematical methods of reasoning about datastructures
I was reading a great post about the nested sets model:
http://sqlblog.com/blogs/adam_machanic/archive/2006/07/12/swinging-from-tree-to-tree-using-ctes-part-1-adjacency-to-nested-sets.aspx
Where he ...
5
votes
2answers
133 views
Core of Verifier in Isabelle/HOL
Question
What is the core algorithm of the Isabelle/HOL verifier?
I'm looking for something on the level of a scheme metacircular evaluator.
Clarification
I'm only interested in the Verifier , not ...
-1
votes
2answers
160 views
0
votes
0answers
157 views
Huffman minimum variance coding
it is well known that Huffman code with minimum variance is preferable.
I've digged through entire Polish/English internet and this is what I found:
to build Huffman code with minimum variance you ...
6
votes
1answer
83 views
Finding inaccessible points on a 2D plane
I have been working on JavaScript / JQuery code which allows arrow key movement between input boxes (yes, I am aware this breaks standard UI).
It works by by looping through each element and finding ...
1
vote
1answer
120 views
Proof for the greedy algorithm
I recently tried solving a problem on Codeforces I did get the solution right but am now trying to prove it. The algorithm is something like this:
Take the smallest discount and apply it on the most ...
2
votes
2answers
91 views
In Coq, which tactic to change the goal from `S x = S y` to `x = y`
I want to change the goal from S x = S y to x = y. It's like inversion, but for the goal instead of a hypothesis.
Such a tactic seems legit, because when we have x = y, we can simply use rewrite and ...
1
vote
2answers
85 views
Proving a theorem using induction in COQ
I am learning Coq at school, and I have an assignment to do for home. I have a lemma to proove: If a list contains a zero among its elements, then the product of its elements is 0. I started my code, ...
0
votes
2answers
161 views
Proving an algorithm's correctness in determining the number of 1 bits in a bit string
procedure bit count(S: bit string)
count := 0
while S != 0
count := count + 1
S := S ∧ (S − 1)
return count {count is the number of 1s in S}
Here S-1 is the bit string ...
2
votes
5answers
238 views
How can we prove by induction that binary search is correct?
I'm having a hard time understanding how induction, coupled with some invariant, can be used to prove the correctness of algorithms. Namely, how is the invariant found, and when is the inductive ...
0
votes
1answer
88 views
Using Omega to prove a lemma in Coq
I am trying to make a proof in Coq using Omega. I spent a lot of time on it, but nothing came to me. I have to say I am new in Coq, so I am not at ease with this kind of language, and I do not have ...
3
votes
2answers
98 views
Proving NP complexity
I'm learning how to prove something is NP. In Thomas Cormen's intro to algorithm book, he states something is NP if given a solution to some problem, you can verify it is correct in polynomial time.
...
1
vote
1answer
66 views
Proving Regular Languages
I have to prove this statement is false.
If L1 = {ab| a∈L2, b∉L2} is a regular language, then L2 is a regular language.
(a and b are strings.)
(Assume L1 and L2 have the same alphabets.)
My work:
...
12
votes
1answer
440 views
How do you prove that a function is unique for its type?
id is the only function of type a -> a, and
fst the only function of type (a,b) -> a. In these simple cases, this is fairly straightforward to see. But in general, how would you go about ...
2
votes
1answer
129 views
Explaining algorithm proofs in plain English
I'm a programmer who never studied Algorithms formally, and have always wanted to fill in that gap in my learning. I'm currently working my way through some books and online material, and I understand ...
2
votes
1answer
90 views
looking for similar known problems
I am trying to prove the computer complexity of this optimization problem:
Given a connected graph G = (V, E) and a set S ⊊ V. Find a connected subgraph G'= (V', E ') that:
Min f(G')
Min |V'|
...
0
votes
1answer
101 views
Lambda calculus in practice [closed]
How to choose a language, a lambda term (λx.y)((λx.xxx)(λx.xxx)) actually calculated? In other words, need a language to the normal order reduction and the weak type system.
8
votes
2answers
419 views
Logic Proof of Associative Property for XOR
I came across a common programming interview problem: given a list of unsigned integers, find the one integer which occurs an odd number of times in the list. For example, if given the list:
...
0
votes
0answers
108 views
Log-space program proof
I've got two log-space programs F and G.
Program F will get input in array A[1..n] and he will create the output array B[1..n].
Program G will get the input array B which has the program F ...
0
votes
1answer
85 views
Proof on less than and less or equal on nat
Assuming the following definitions (the first two are taken from http://www.cis.upenn.edu/~bcpierce/sf/Basics.html):
Fixpoint beq_nat (n m : nat) : bool :=
match n with
| O => match m with
...
0
votes
1answer
288 views
Prove binary tree properties using induction
I am having trouble proving binary tree properties using induction:
Property 1 - A tree with N internal nodes has a maximum height of N+1
base case - 0 internal nodes has a height of 0
assume ...



