The induction tag has no wiki summary.
1
vote
0answers
21 views
Inductive predicate in ACSL stating a linked list is a sublist of another
I need to code, in ACSL, an inductive predicate stating that a linked list is a sublist of another.
The signature of the predicate should be something like this:
inductive subLinkedList{L1,L2} ...
0
votes
2answers
33 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 ...
-6
votes
1answer
72 views
Prove By Induction [closed]
I'm having this very complicated equation. Any kind soul to help explaining how to proof by induction for the equation? Appreciate if someone could help. Thanks.
for all n >= 1, (fib(1))^2 + ...
-1
votes
1answer
97 views
Can't connect to local PostgreSQL using Induction app on Mountain Lion [closed]
I'm having a very weird issue with the Induction app for PostrgeSQL.
I am unable to connect through the app but I can connect perfectly well in terminal through psql.
I was initially getting this ...
0
votes
0answers
40 views
how to prove the correctness of recursive algorithm?
private static void swap(char[] str, int i, int j){
char tmp = str[i];
str[i] = str[j];
str[j] = tmp;
}
public static void permute(String str){
permute(str.toCharArray(), 0, ...
0
votes
0answers
78 views
Proof an adjacency graph is a bipartite graph?
The adjacency graph is obtained from cutting a plane such that each node represents an undivided portion of the plane, and edges exist between portions that share a boundary edge (ie it is ...
0
votes
1answer
53 views
Compilers Exam Explanation
I am preparing for a Compilers exam and I found the following two questions in past papers that I don't know how to answer:
1. Array bounds checking requires code to check each array subscript to ...
0
votes
4answers
74 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
586 views
Substitution method for solving recurrences
First of all sorry for asking such a basic question.
But I am having difficulties understanding substitution method for solving recurrences.I am following Introduction to Algo.s -CLRS. As I am not ...
0
votes
1answer
89 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 ...
0
votes
0answers
75 views
Postgres not available as adapter on Induction
I'm using Postgres.app and the latest build of Induction ( Version 0.1.0 (28) ) and I cannot choose "Postgres" as an adapter. I only have the options for mongodb, redis, and sqlite. If I attempt to ...
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 ...
0
votes
1answer
293 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 ...
0
votes
1answer
342 views
Proving Polynomial Big-Theta through induction?
I understand the concept of big theta, big oh, and big omega.. I'm just having a hard time proving it. It's been a long time since I've done induction, so I'm pretty sure I'm just rusty and missing ...
2
votes
4answers
311 views
Understanding recursion in Python
I'm really trying to wrap my brain around how recursion works and understand recursive algorithms. For example, the code below returns 120 when I enter 5, excuse my ignorance, and I'm just not seeing ...
-2
votes
1answer
92 views
Algorithm and Complexity [duplicate]
Possible Duplicate:
prove n = Big-O(1) using induction
This is big "O" notation
2^n+1=O(3^n/2) how can i sole this solution with induction method?
thanks now.
3
votes
1answer
710 views
What is the relationship between recursion and proof by induction?
What is the relationship between recursion and proof by induction ?
Let's say fn(n),
recursion is fn(n) calls itself until meet base condition;
induction is when base condition is meet, try to ...
1
vote
2answers
384 views
How do you use Induction to connect to a local SQLite database?
I'm trying to use Induction to connect to my local SQLite database however I've no idea of how to make the connection. In previous SQLite clients I've simply opened the database file.
What ...
1
vote
2answers
1k views
PostgreSQL Database Browser for Rails 3.2 app - Induction App instead of SQLite Database Browser
I am following the Rails Tutorial with the database set up using postgreSQL so the development and production are the same locally and where it is deployed on Heroku. So far so good. I've got the ...
4
votes
2answers
159 views
induction hypothesis for even numbers
I am trying to write an induction hypothesis specifically for proving properties of even numbers. I formulated and proved the following:
Theorem ind_hyp_on_evens:
forall (p : nat -> Prop),
(p 0 ...
1
vote
2answers
160 views
Proving an algorithm is correct for solving a game
Given is a row of at most 30 stones which can either be black or white. No gaps are allowed at the start of the game, but there can be less than 30 stones.
The goal is to remove all the stones. Only ...
1
vote
2answers
238 views
Inductive Specification: Top-down vs Botom-up vs Rules of Inference?
Please bear with me on this one. I am first going to describe an example from the book, and then ask my question at the end.
According to the text on Programming Language Paradigms:
Inductive ...
4
votes
1answer
149 views
Termination of structural induction
I can't get Agda's termination checker to accept functions defined using structural induction.
I created the following as the, I think, simplest example exhibiting this problem.
The following ...
0
votes
3answers
588 views
Proof for number of internal nodes in a tree
I was reading about compressed tries and read the following:
a compressed trie is a tree which has L leaves and every internal node in the trie has at least 2 children.
Then the author wrote that a ...
13
votes
5answers
839 views
Showing two different fibonacci functions are equivalent
I'm trying to learn exactly what it means to prove a program correct. I'm starting from scratch and getting hung up on the first steps/the introduction to the topic.
In this paper on total functional ...
4
votes
3answers
395 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, ...
0
votes
2answers
2k views
Proving a recurrence relation by induction [closed]
I have a test coming up, and I need some help with a practise question... Need to prove this by induction:
Reccurence relation: m(i) = m(i-1) + m(i - 3) + 1, i >= 3
Initial conditions: m(0) = 1, ...
3
votes
2answers
742 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 ...
0
votes
2answers
779 views
How to prove by induction that a program does something?
I have a computer program that reads in an array of chars that operands and operators written in postfix notation. The program then scans through the array works out the result by using a stack as ...

