Here you can ask questions and find or give answers to organizational, academic and other questions about studying computer science.

1.1k questions

1.2k answers

1.6k comments

532 users

0 votes
Can somebody advise me on how to submit the answer for the deterministic automaton type in the proper format? My correct answer was submitted, yet it was still listed as incorrect.
in * TF "Information Systems" by (300 points)
If you are sure that your answer is correct and there is just a minor syntax error, send your solution to your tutor who may grade this exercise manually for you.

1 Answer

0 votes
It is mentioned in the exercise text. You should enter something as follows:

    labels 0:s1; 1:s2,s3; 2:; 3:s0,s1,s2;     // encode Q

    labels 0:; 1:s2,s3; 2:; 3:s2;     // encode Qf

    init 0,1;

    transitions (0,{a},,1); (0,{},,2); (1,{},,3); (3,{a},,3); (3,{},,3);

    accept 2,3;

The labels define the sets of states that form the pairs (Q,Qf) of the breakpoint construction.
by (166k points)

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
Imprint | Privacy Policy
...