Tagged Questions

3
votes
1answer
116 views

Deterministic Finite-state Automaton Questions

I have this DFA described as (Q, q1, A, N, F) where Q = {1,2,3,4}, q1 = 1, A = {a,b,c}, F = {2,4}, N = { (1,a) -> 2, (1,b) -> 3, (1,c) -> 4, (2,a) -> 2, (2,b) -> 4, (3,a) -> 2, (3,c) ...
3
votes
0answers
80 views

Programming Theory - Proving Invariants

I have defined this pseudo-code for recognising strings using a relaxed-trie where the function Next[u,x] gives the set of nodes with u-edges from u ( basically the set of nodes such that (u,x,v) is ...
1
vote
1answer
129 views

Is there any software that takes set builder notations and returns roster notations?

For example, if you feed {x|xεZ,0<x} to it, it returns { 1,2,3,4,5,6,7,8,9,10,11,...}
0
votes
4answers
177 views

Finding vertices in an ordered set of a complete graph

Problem: For an ordered set of edges E of a complete graph Kn, given an edge Ei, find the edge's vertices (v, w)_Ei. Note: This is likely not a problem specific to graph theory, although it was ...
-3
votes
5answers
863 views

Russell's Paradox [closed]

Let X be the set of all sets that do not contain themselves. Is X a member of X?