Tagged Questions

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 valid or invalid; only the former kind constitutes actual proof, whereas the latter kind usually refers to a flawed attempt at proof.

learn more… | top users | synonyms

56
votes
8answers
10k views

Explain the proof by Vinay Deolalikar that P != NP

Recently there has been a paper floating around by Vinay Deolalikar at HP Labs which claims to have proved that P != NP. Could someone explain how this proof works for us less mathematically inclined ...
36
votes
32answers
5k views

Why can't programs be proven?

Why can't a computer program be proven just as a mathematical statement can? A mathematical proof is built up on other proofs, which are built up from yet more proofs and on down to axioms - those ...
36
votes
9answers
7k views

In Laymen's terms, what is the pumping lemma

So I saw this question and was curious as to what the Pumping Lemma was (Wikipedia wasn't much help). I understand that its basically a theoretical proof that must be true in order for a language to ...
18
votes
2answers
447 views

C# Code Contracts: What can be statically proven and what can't?

I might say I'm getting quite familiar with Code Contracts: I've read and understood most of the user manual and have been using them for quite a while now, but I still have questions. When I search ...
15
votes
4answers
1k views

proofs about regular expressions

Does anyone know any examples of the following? Proof developments about regular expressions (possibly extended with backreferences) in proof assistants (such as Coq). Programs in dependently-typed ...
13
votes
4answers
624 views

Functional proofs (Haskell)

I failed at reading RWH; and not one to quit, I ordered Haskell: The Craft of Functional Programming. Now I'm curious about these functional proofs on page 146. Specifically I'm trying to prove 8.5.1 ...
12
votes
1answer
259 views

Is this always true: fmap (foldr f z) . sequenceA = foldr (liftA2 f) (pure z)

import Prelude hiding (foldr) import Control.Applicative import Data.Foldable import Data.Traversable left, right :: (Applicative f, Traversable t) => (a -> b -> b) -> b -> t (f a) ...
9
votes
7answers
687 views

How do you “get it” when it comes to proofs?

When we start getting into algorithm design and more discrete computer science topics, we end up having to prove things all of the time. Every time I've seen somebody ask how to become really good at ...
8
votes
19answers
848 views

Should code be short/concise?

When writing a mathematical proof, one goal is to continue compressing the proof. The proof gets more elegant but not necessarily more readable. Compression translates to better understanding, as ...
8
votes
6answers
889 views

Proving correctness of multithread algorithms

Multithread algorithms are notably hard to design/debug/prove. Dekker's algorithm is a prime example of how hard it can be to design a correct synchronized algorithm. Tanenbaum's Modern operating ...
6
votes
3answers
146 views

Would the ability to declare Lisp functions 'pure' be beneficial?

I have been reading a lot about Haskell lately, and the benefits that it derives from being a purely functional language. (I'm not interested in discussing monads for Lisp) It makes sense to me to ...
6
votes
1answer
708 views

Context Free Language Question (Pumping Lemma)

I know this isn't directly related to programming, but I was wondering if anyone know how to apply the pumping lemma to the following proof: Show that L={(a^n)(b^n)(c^m) : n!=m} is not a context ...
6
votes
2answers
251 views

General proof of equivalence of two FSMs in finite time?

Does a general proof exist for the equivalence of two (deterministic) finite state machines that always takes finite time? That is, given two FSMs, can you prove that given the same inputs they will ...
5
votes
4answers
1k views

prove n = Big-O(1) using induction

I know that the relation n = Big-O(1) is false. But if we use induction involving Big-O it can be proved. But the fallacy is we cannot induct Big-O. But my question is how we can disprove the relation ...
5
votes
4answers
591 views

Proof that Fowler's money allocation algorithm is correct

Martin Fowler has a Money class that has a money allocation routine. This routine allocates money according to a given list of ratios without losing any value through rounding. It spreads any ...
4
votes
3answers
115 views

What's wrong with this inductive proof that mergesort is O(n)?

Comparison based sorting is big omega of nlog(n), so we know that mergesort can't be O(n). Nevertheless, I can't find the problem with the following proof: Proposition P(n): For a list of length n, ...
4
votes
8answers
888 views

Formally verifying the correctness of an algorithm

First of all, is this only possible on algorithms which have no side effects? Secondly, where could I learn about this process, any good books, articles, etc?
4
votes
4answers
741 views

How to prove (forall x, P x /\ Q x) -> (forall x, P x) [In Coq]

How does one prove (forall x, P x /\ Q x) -> (forall x, P x) in Coq? Been trying for hours and can't figure out how to break down the antecedent to something that Coq can digest. (I'm a newb, ...
3
votes
2answers
139 views

Proof by Induction of Pseudo Code

I don't really understand how one uses proof by induction on psuedocode. It doesn't seem to work the same way as using it on mathematical equations. I'm trying to count the number of integers that ...
3
votes
2answers
119 views

Implementation of binary tree

The following text is snippet from algorithms book. We could draw the binary trees using rectangular boxes that are customary for linked lists, but trees are generally drawn as circles ...
3
votes
1answer
187 views

Bipartite connected graph proof

A friend presented me with a conjecture that seems to be true but neither of us can come up with a proof. Here's the problem: Given a connected, bipartite graph with disjoint non-empty vertex sets ...
3
votes
1answer
487 views

Help with Big Omega Proof?

I am having trouble solving a proof. Where t(n) <= cn^1.6, c being a constant. In general, Big Omega is the opposite of Big O in that it is the best case scenerio and looks for the lower bound. So ...
3
votes
1answer
646 views

Rendering PDF proofs with Java (via LaTex?)

Currently I am working on a automated theorem prover in Java. I would like to be able to render these proofs, as PDF. Preferrably, this will go though something like LaTeX, using proof.sty or ...
3
votes
3answers
695 views

Prove or disprove n^2 - n + 2 ∈ O(n)

For my algorithm analysis course, I've derived from an algorithm the function f(n) = n^2 - n + 2. Now I need to prove or disprove f(n) ∈ O(n). Obviously it's not, so I've been trying to disprove that ...
3
votes
1answer
174 views

What does cpython do to help detect object cycles(reference counting)?

From what I've read about cpython it seems like it does reference counting + something extra to detect/free objects pointing to each other.(Correct me if I'm wrong). Could someone explain the ...
2
votes
1answer
241 views

Proof that the halting problem is NP-hard?

(I apologize if this is the wrong site for this question, but given that there are many "not-hard-enough-for-CS-Theory" CS theory questions floating around here, I think that this might be a good fit. ...
2
votes
1answer
188 views

Why are all LL(1) grammars LR(1)?

It's a widely-known fact that any LL(1) grammar is also LR(1), but I can't seem to find a rigorous proof of this anywhere. I've heard some high-level overviews of the proof (for example, that since ...
2
votes
1answer
105 views

How can I show that a function is always not commutative

I have the following vexing problem. I have implemented the following function: function bool less(nat x, nat y) { if (y<>0) then if (x<>0) then return ...
2
votes
3answers
341 views

Prove that n! is not in O(n^p) for any constant natural number p

How can I prove that n! is not in O(n^p) for any constant natural number p? And is (n k)(n choose k) in O(n^p), for all k?
2
votes
2answers
234 views

Have I checked every consecutive subset of this list?

I'm trying to solve problem 50 on Project Euler. Don't give me the answer or solve it for me, just try to answer this specific question. The goal is to find the longest sum of consecutive primes that ...
2
votes
1answer
249 views

Proving that the distance values extracted in Dijkstra's algorithm is non-decreasing?

I'm reviewing my old algorithms notes and have come across this proof. It was from an assignment I had and I got it correct, but I feel that the proof certainly lacks. The question is to prove ...
2
votes
9answers
2k views

What is the proof of of (N–1) + (N–2) + (N–3) + … + 1= N*(N–1)/2 [closed]

I got this formula from a data structure book in the bubble sort algorithm. I know that we are (n-1) * (n times), but why the division by 2? Can anyone please explain this to me or give the detailed ...
2
votes
5answers
348 views

How to prove that the C statement -x, ~x+1, and ~(x-1) yield the same results?

I want to know the logic behind this statement, the proof. The C expression -x, ~x+1, and ~(x-1) all yield the same results for any x. I can show this is true for specific examples. I think the way ...
2
votes
5answers
415 views

Writing a proof for an algorithm

Hi guys i am trying to compare 2 algorithms and thought i may try and write a proof for them !!! (my maths sucks so hence the question) Normally in our math lesson last year we would be given a ...
2
votes
3answers
2k views

How to determine the height of a recursion tree from a recurrence relation?

How does one go about determining the height of a recursion tree, built when dealing with recurrence run-times? How does it differ from determining the height of a regular tree? edit: sorry, i ...
2
votes
2answers
296 views

How do I write Ax ( P(x) and Q(x) ) in Coq?

I'm trying out Coq, but I'm not completely sure what I'm doing. Is: Theorem new_theorem : forall x, P:Prop /\ Q:Prop Equivalent to: Ax ( P(x) and Q(x) ) (where A is supposed to be the universal ...
1
vote
3answers
51 views

Big Oh Notation O((log n)^k) = O(log n)?

Big Oh Notation O((log n)^k) = O(log n)? Where k is some constant (eg k number of logarithmic for loops) I was told by my professor that this statement was true, however he said it will be proved ...
1
vote
2answers
66 views

Proving big O of statement [closed]

I am having a hard time proving that n^k is O(2^n) for all k. I tried taking lg2 of both sides and have k*lgn=n, but this is wrong. I am not sure how else I can prove this.
1
vote
1answer
72 views

How to prove by induction that a parabola corresponding to two edges intersects at atmost 2 points?

I have many parabolas that are intersecting each other. I am generating a list S from the upper segments of these parabolas. Since the corresponding two edges of a parabola intersect each other at ...
1
vote
0answers
80 views

Proving My Coroutines Work

I just wrote a coroutine (as an exercise) implementation based on Mono Continuations (very weird experience). What are some ways / approaches that I should take to prove its correctness?
1
vote
4answers
185 views

Prove correctness of unit test

I'm creating a graph framework for learning purposes. I'm using a TDD approach, so I'm writing a lot of unit tests. However, I'm still figuring out how to prove the correctness of my unit tests For ...
1
vote
1answer
271 views

Proof by Induction of the sum of heights of nodes in a full binary tree

I'm trying to prove the following by induction: sum(k*2^(H-k), k = 0 .. H) = N-H-1 it's a problem for an algorithms class. I was thinking I could do what I normally do for summations, which is to ...
1
vote
3answers
535 views

Two's complement proof

Is it possible to prove by induction that the two's complement of any string of 0's will always result in 0, for all sequences of length n? I'm trying to do this using the value formula, i.e. value ...
1
vote
1answer
164 views

Stable Matching Problem

I am currently reading an Algorithm's book and came across the Stable Matching Problem. And a question came to mind that I'm curious about, but the book doesn't answer. In every SMP is it possible to ...
1
vote
2answers
494 views

Inductive proof of binary tree child nodes [closed]

How can I prove that the number of interval nodes in a binary tree with n leaves (where each interval node has two children) is n-1, using induction?
1
vote
1answer
731 views

Proof for depth of balanced search tree

If T is a balanced BST with n elements, L its left subtree and R its right one, how can I prove that its depth is less than or equal to 2log(n) + 1? There is a proof by induction which I have but I ...
0
votes
1answer
81 views

Prove for any a > b >0, b^n in Big-O a^n

Prove that for any real numbers, a, b such that a > b > 0, b^n is O(a^n), n >=1. I have searched several textbooks I own on Discrete Mathematics as well as several online searches for any ...
0
votes
0answers
32 views

Proof of Correctness for Next Palindrome Algorithm [closed]

The Next Palindrome Algorithm is mentioned in this link: http://www.algorithmist.com/index.php/SPOJ_PALIN I wanted to find a formal proof that this algorithm is correct ie. mirroring first half of ...
0
votes
1answer
40 views

How can I prove this operation over Binary search trees?

I'd want you to give me a hint to prove this exercise from the book of Cormen: "Prove that no matter what node we start at in a height-h binary search tree, k successive calls to TREE-SUCCESSOR take ...
0
votes
1answer
67 views

How do you prove this pumping lemma example? [closed]

I got this question wrong on my test and was wondering if someone could explain it, showing the steps taken to come to the conclusion. Any help would be appreciated. In the PL proof for L_neq = ...

1 2