Give a state diagram for an NFA whose language L = …












0












$begingroup$


L = {w ∈ {0,1,2} *: w is a ternary representation of an integer that is a multiple of 3 but not a multiple of 9}



I've written a DFA accepting multiples of 3, but I'm not sure how I should proceed. Any help would be very much appreciated, thank you.



enter image description here










share|cite|improve this question











$endgroup$








  • 1




    $begingroup$
    So the automaton should accept all words which end on 0 but not on 00.
    $endgroup$
    – Wuestenfux
    Feb 2 at 12:14










  • $begingroup$
    Your ternary representations allow leading zeroes. Maybe check tio find out whether this is really allowed. In your automaton you can merge $q_1$ and $q_2$. Further, it accepts the empty word. Again it is not clear whether this is a valid ternary number.
    $endgroup$
    – Peter Leupold
    Feb 3 at 7:27
















0












$begingroup$


L = {w ∈ {0,1,2} *: w is a ternary representation of an integer that is a multiple of 3 but not a multiple of 9}



I've written a DFA accepting multiples of 3, but I'm not sure how I should proceed. Any help would be very much appreciated, thank you.



enter image description here










share|cite|improve this question











$endgroup$








  • 1




    $begingroup$
    So the automaton should accept all words which end on 0 but not on 00.
    $endgroup$
    – Wuestenfux
    Feb 2 at 12:14










  • $begingroup$
    Your ternary representations allow leading zeroes. Maybe check tio find out whether this is really allowed. In your automaton you can merge $q_1$ and $q_2$. Further, it accepts the empty word. Again it is not clear whether this is a valid ternary number.
    $endgroup$
    – Peter Leupold
    Feb 3 at 7:27














0












0








0





$begingroup$


L = {w ∈ {0,1,2} *: w is a ternary representation of an integer that is a multiple of 3 but not a multiple of 9}



I've written a DFA accepting multiples of 3, but I'm not sure how I should proceed. Any help would be very much appreciated, thank you.



enter image description here










share|cite|improve this question











$endgroup$




L = {w ∈ {0,1,2} *: w is a ternary representation of an integer that is a multiple of 3 but not a multiple of 9}



I've written a DFA accepting multiples of 3, but I'm not sure how I should proceed. Any help would be very much appreciated, thank you.



enter image description here







computer-science automata






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Feb 2 at 3:35









YuiTo Cheng

2,4064937




2,4064937










asked Feb 2 at 2:26









Hayden MorganHayden Morgan

12




12








  • 1




    $begingroup$
    So the automaton should accept all words which end on 0 but not on 00.
    $endgroup$
    – Wuestenfux
    Feb 2 at 12:14










  • $begingroup$
    Your ternary representations allow leading zeroes. Maybe check tio find out whether this is really allowed. In your automaton you can merge $q_1$ and $q_2$. Further, it accepts the empty word. Again it is not clear whether this is a valid ternary number.
    $endgroup$
    – Peter Leupold
    Feb 3 at 7:27














  • 1




    $begingroup$
    So the automaton should accept all words which end on 0 but not on 00.
    $endgroup$
    – Wuestenfux
    Feb 2 at 12:14










  • $begingroup$
    Your ternary representations allow leading zeroes. Maybe check tio find out whether this is really allowed. In your automaton you can merge $q_1$ and $q_2$. Further, it accepts the empty word. Again it is not clear whether this is a valid ternary number.
    $endgroup$
    – Peter Leupold
    Feb 3 at 7:27








1




1




$begingroup$
So the automaton should accept all words which end on 0 but not on 00.
$endgroup$
– Wuestenfux
Feb 2 at 12:14




$begingroup$
So the automaton should accept all words which end on 0 but not on 00.
$endgroup$
– Wuestenfux
Feb 2 at 12:14












$begingroup$
Your ternary representations allow leading zeroes. Maybe check tio find out whether this is really allowed. In your automaton you can merge $q_1$ and $q_2$. Further, it accepts the empty word. Again it is not clear whether this is a valid ternary number.
$endgroup$
– Peter Leupold
Feb 3 at 7:27




$begingroup$
Your ternary representations allow leading zeroes. Maybe check tio find out whether this is really allowed. In your automaton you can merge $q_1$ and $q_2$. Further, it accepts the empty word. Again it is not clear whether this is a valid ternary number.
$endgroup$
– Peter Leupold
Feb 3 at 7:27










1 Answer
1






active

oldest

votes


















0












$begingroup$

Since you are asking for a NFA, and taking into account the comments by Wuestenfux and Peter Leupold, three states should suffice:





Note that there are three initial states in this automaton.






share|cite|improve this answer









$endgroup$














    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "69"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    noCode: true, onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3096969%2fgive-a-state-diagram-for-an-nfa-whose-language-l%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0












    $begingroup$

    Since you are asking for a NFA, and taking into account the comments by Wuestenfux and Peter Leupold, three states should suffice:





    Note that there are three initial states in this automaton.






    share|cite|improve this answer









    $endgroup$


















      0












      $begingroup$

      Since you are asking for a NFA, and taking into account the comments by Wuestenfux and Peter Leupold, three states should suffice:





      Note that there are three initial states in this automaton.






      share|cite|improve this answer









      $endgroup$
















        0












        0








        0





        $begingroup$

        Since you are asking for a NFA, and taking into account the comments by Wuestenfux and Peter Leupold, three states should suffice:





        Note that there are three initial states in this automaton.






        share|cite|improve this answer









        $endgroup$



        Since you are asking for a NFA, and taking into account the comments by Wuestenfux and Peter Leupold, three states should suffice:





        Note that there are three initial states in this automaton.







        share|cite|improve this answer












        share|cite|improve this answer



        share|cite|improve this answer










        answered Feb 7 at 11:11









        J.-E. PinJ.-E. Pin

        18.6k21754




        18.6k21754






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Mathematics Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            Use MathJax to format equations. MathJax reference.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3096969%2fgive-a-state-diagram-for-an-nfa-whose-language-l%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            MongoDB - Not Authorized To Execute Command

            How to fix TextFormField cause rebuild widget in Flutter

            in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith