Tagged Questions
7
votes
4answers
648 views
Is there a difference between a “finite state machine” and a “state machine”?
I'm not sure I understand if there is a difference between a finite state machine and a state machine? Am I thinking about this too hard?
5
votes
7answers
436 views
How to write an enumeration of all computable functions?
Motivation: I'd like to be able to use toy functional programming in languages without first-order functions, by using natural numbers instead of functions.
A universal function is a function f : N ...
1
vote
6answers
357 views
what is the sum of a sum?
Σ from i=1 to n of(n)(n+1)/2
what is the upper limit of computation for a give n? is it O(n^3) O(n^2)?
example:
n=1 , sum =1
n=2 , sum= 1+ 1+2 , sum = 3
n=3, sum= 1+1+2+1+2+3, sum = 10
n=4, sum ...