LaTeX Finite Automata and State Diagrams with Tikz hayesall.com/blog/latex-a…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/qznc_bot2
πŸ“…︎ Dec 29 2021
🚨︎ report
I’ve taken discrete math at another school, but it didn’t cover grammar theory or finite automata.

It doesn’t qualify for 2800 credit, but I’m wondering if I could take 3110 anyway. How hard a prerequisite for 3110 is 2800, if I’ve taken discrete math?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/largomouth3
πŸ“…︎ Nov 17 2021
🚨︎ report
Finite Automata with a Counter

So I have a rather weird problem, I need to write predicates, without the use of any libraries other than built-in prolog predicates, that given a number N, accept a language such that:

Let alphabet A = a...z.
N = 5: accepts A*aAAAA. ie. when the letter a is 5th from the back.
N = 2: accepts A*aA. ie. when the letter a is 2nd from the back.
etc.
N = 3: rejects A*bAA. because a is not 3rd from the back.

I am trying to write an acceptor that will be able to accept this 'set' of languages based on N but the non-determinism is hurting my head since A can be a as well so I don't know how to handle this state change.

Any guidance in how this should approached would be very appreciated.

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/PokeManiac_Pl
πŸ“…︎ Nov 13 2021
🚨︎ report
Python library for simulating finite automata

Hello everyone, am a computer science student, actually I'm working on a python library for simulating finite automata, on this library implemented DFA and NFA, and also is able to visualize the automata, convert NFA to DFA, and also implemented the product and union of DFA.

Here is my repo: https://github.com/rohaquinlop/automathon

and the PyPI page: https://pypi.org/project/automathon/

On the documentation you can see my email and my other media where you can contact me if you want, I'm making this library because I think that automata are really fun, and I want to help others when they are starting to learn about them.

πŸ‘︎ 162
πŸ’¬︎
πŸ‘€︎ u/fexx3l
πŸ“…︎ May 18 2021
🚨︎ report
Validating Input with Finite Automata in Java | Baeldung baeldung.com/java-finite-…
πŸ‘︎ 23
πŸ’¬︎
πŸ‘€︎ u/framelanger
πŸ“…︎ Jul 19 2021
🚨︎ report
Finite State Machine (Finite Automata) youtu.be/Qa6csfkK7_I
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/framelanger
πŸ“…︎ Aug 28 2021
🚨︎ report
[Univeristy Computer Science: Finite State Automata] Show a Deterministic Finite State Automaton over the alphabet { ’0’, ’1’ } that accepts stings containing 100, 111. (Answer inside)

I have the answer to this question here:

https://preview.redd.it/xkgtletm0rg71.png?width=1020&format=png&auto=webp&s=0551fefe70b2bea09455efe8faadf8940a1d3991

My answer is instead this (sorry for Paint!). I know it is incorrect but please could it be explained why it is incorrect? Is it because the question is asking for 'strings containing' and not exclusively that answer? Thank you so much!

https://preview.redd.it/hchrbapc1rg71.png?width=1004&format=png&auto=webp&s=6d072fdfa279cf3f84fbe9bde1727031dd81e014

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/mogumaybe
πŸ“…︎ Aug 11 2021
🚨︎ report
Free Finite Element Analysis Tutorial - Deterministic Finite Automata (DFA) idownloadcoupon.com/coupo…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/smartybrome
πŸ“…︎ Jul 31 2021
🚨︎ report
Validating Input with Finite Automata in Java | Baeldung baeldung.com/java-finite-…
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/framelanger
πŸ“…︎ Jul 10 2021
🚨︎ report
[Formal Language and Automata Theory] Why are finite automata naturally deterministic but push-down automata are naturally non-deterministic ?

Same as title.

Might be something simple but I'm not able to think of an answer.
A little help can go a long way.

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/HamsterofHades
πŸ“…︎ Jun 01 2021
🚨︎ report
The Node module -- finite state automata, Markov chains, and modular sequencing youtube.com/watch?v=gvnHz…
πŸ‘︎ 17
πŸ’¬︎
πŸ‘€︎ u/iotatron
πŸ“…︎ Feb 15 2021
🚨︎ report
How important is finite automata?

I heard the word automata on a podcast and thought of googling it and found some YouTube lessons on it: https://youtu.be/Qa6csfkK7_I

How important is it?

πŸ‘︎ 92
πŸ’¬︎
πŸ‘€︎ u/kavinda14
πŸ“…︎ Oct 18 2020
🚨︎ report
Logic and Finite Automata Book

In school I took an introduction to logic that ultimately ended in explanation of Finite State Automata. I liquidated a lot of those books since then but have been slowly revisiting some of the foundations of CS and was wondering if there were any suggested books on this subject?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Holmes89
πŸ“…︎ Feb 28 2021
🚨︎ report
Thoughts from a Finite Automata lecture
πŸ‘︎ 768
πŸ’¬︎
πŸ‘€︎ u/Boner4Stoners
πŸ“…︎ Nov 15 2019
🚨︎ report
Text indexing in Python with minimal finite-state automata tostr.pl/blog/implementat…
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/tosterovic
πŸ“…︎ Apr 23 2021
🚨︎ report
Help designing a Nondeterministic finite automata

**solved**

Hi Everyone,

Trying to self-study some CS related maths and it has been a nightmare doing so. I am attempting a question to design a NFA would appreciate it, if someone could verify my answer.

The question design criteria is the inputs can consist of (a, b) that are atleast 2 letters long and do not have the subword bb. The first and last letter has to be the same (so it can be aba or bab etc).

This is my solution:

https://preview.redd.it/gg69316iuwb61.jpg?width=2592&format=pjpg&auto=webp&s=d038e5fa7d9ad78632d9de5febb42da58b537d50

πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/lost_cs_lad
πŸ“…︎ Jan 17 2021
🚨︎ report
Finite State Machine | Finite Automata | Theory of Computation csschoolonline.xyz/finite…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/framelanger
πŸ“…︎ Apr 23 2021
🚨︎ report
What could be interesting real life applications of NFAs( Non- Deterministic Finite Automata) and DFAs (Deterministic Finite Automata)?
πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/DumplinDoup
πŸ“…︎ Apr 05 2021
🚨︎ report
Lets apply Finite Automata: A puzzle with automata and languages as the main mechanic

Hello Compsci community.

In University I enjoyed Automata Theory and Complexity Theory a lot, leading to a thesis somewhere between Game Theory, Automata Theory and Complexity Theory. I did not pursue this afterwards in my working life until I started to develop my own first game. Setting myself the challenge to use what I liked I released this puzzle application called "TrainAutomaton". The user solves puzzles close to the ones we did in Computer Science classes on NFAs / DFAs. I personally enjoyed the puzzly nature of the assignments a lot, but I also know that some of my fellow students did not.

Behind the scenes I have a NFA-like implementation that checks the players input (in the form of a railway grid) against the language (in the form of a list of train routes). Note that it is not a FA in the strict sense, as the automaton only checks the given words, which are either supposed to be in the set of words of the language or not. There is no expectation on the acceptance of words not on the task list, so it does not matter for most words, if the automaton accepts or rejects them.

I discarded the thought of implementing a Kleene Feature, as I felt it might be a bit confusing and unimmersive, but thats more of a game design question.

Here is a blog post on the first part of the automaton construction without the player input. https://nerdautomaton.com/2020/09/21/train-automaton-theory-pt1/

You can have a look at the it here, its free on Android and Windows PC.

https://www.youtube.com/watch?v=os_rMt6-uu0

If this game is useful to anyone in their classes or sparks some interest in computer sciences, let me know.

πŸ‘︎ 74
πŸ’¬︎
πŸ‘€︎ u/TheNerdAutomaton
πŸ“…︎ Sep 24 2020
🚨︎ report
Phosgene - Finite Automata (a lot like Skinny Puppy) youtube.com/watch?v=S5oQ5…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/Seraph_Grymm
πŸ“…︎ Dec 24 2020
🚨︎ report
Now It Includes an Illustration of A Non-Deterministic Finite State Automata so that you can *Gasp, He's Right* and if you watch parts 1-3 of Hannah Fry's Magic Numbers Mysterious World of Maths AND read Gregory Bateson's 1956, "Toward a theory of Schizophrenia," You're Close to Gods, now, right? youtube.com/watch?v=cyvDG…
πŸ‘︎ 5
πŸ’¬︎
πŸ‘€︎ u/ToNewBeginn
πŸ“…︎ Dec 01 2020
🚨︎ report
Finite state automata / transducers in NLP

Hi all, I’m wondering if anyone who currently works in NLP or maybe more broad language technology uses FSTs in their work? I have a module in my linguistics MA which covers formal language and FSTs so I’m curious to see how/if anyone in the language technology industry actually uses them as part of their work. Thanks!

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/crowpup783
πŸ“…︎ Aug 23 2020
🚨︎ report
Relationship between cellular automata and deterministic finite automata?

I have finished the section in Michael Sipser's intro to theory of computation on automata theory. Granted it's a short introduction but they never mention cellular automata and the those typical automata are nothing like the cellular kind.

The Wikipedia page for cellular automaton says they are studied in automata theory but the automata theory page and the finite state machine page does not mention cellular automata.

Perhaps Stephen wolframs book will explain better but before i finish that i was just wondering how you guys would describe this relationship?

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/Luca715
πŸ“…︎ Sep 25 2020
🚨︎ report
I don't know why this improved algorithm for finite automata works.

I know it's right. When the character which is as the same as the first one in the pattern shows up, it will paste the next row of row0 to the next state. And when the one which is the same character as the second int the pattern… row1…..

https://www.geeksforgeeks.org/pattern-searching-set-5-efficient-constructtion-of-finite-automata/

πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/JacksonSteel
πŸ“…︎ Jun 06 2020
🚨︎ report
Exploring Regular Expressions, Part II: Regular Languages and Finite-State Automata raganwald.com/2019/12/17/…
πŸ‘︎ 22
πŸ’¬︎
πŸ‘€︎ u/homoiconic
πŸ“…︎ Jun 03 2020
🚨︎ report
Deterministic Finite Automata in Go joe-bergeron.com/posts/De…
πŸ‘︎ 2
πŸ’¬︎
πŸ‘€︎ u/jophish126
πŸ“…︎ Jul 27 2020
🚨︎ report
Finite state automata

Not sure if this is the right sub

I have to construct a regex and finite state automata for the language {a,b} where there is exactly 2 a's or 2b's although they are not necessarily adjacent. These are all the details i was given The regex i came up with was (a* b a* b a* + b* a b* a b*) I am not sure of how to convert this into FSA and im not sure if the regex is correct

πŸ‘︎ 13
πŸ’¬︎
πŸ‘€︎ u/hAmZa_WaS_tAkEn
πŸ“…︎ Dec 19 2019
🚨︎ report
David Khourshid - Infinitely Better UIs with Finite Automata youtube.com/watch?v=VU1NK…
πŸ‘︎ 137
πŸ’¬︎
πŸ‘€︎ u/cynicalreason
πŸ“…︎ Oct 20 2017
🚨︎ report
[D] A Survey on Deterministic Finite Automata Compression Techniques

In what other cases can this method of machine learning be used instead of "slow" Neural Nets?

πŸ‘︎ 10
πŸ’¬︎
πŸ‘€︎ u/Eug794
πŸ“…︎ Apr 28 2019
🚨︎ report
Help designing a Nondeterministic finite automata

Hi Everyone,

Trying to self-study some CS related maths and it has been a nightmare doing so. I am attempting a question to design a NFA would appreciate it, if someone could verify my answer.

The design criteria is that the inputs can consist of (a, b) that are atleast 2 letters long and do not have the subword bb. The first and last letter has to be the same (so it can be aba or bab etc).

This is my solution:

https://preview.redd.it/gg69316iuwb61.jpg?width=2592&format=pjpg&auto=webp&s=d038e5fa7d9ad78632d9de5febb42da58b537d50

πŸ‘︎ 3
πŸ’¬︎
πŸ‘€︎ u/lost_cs_lad
πŸ“…︎ Jan 17 2021
🚨︎ report
Why are Non-Deterministic finite automata and Deterministic finite automata equivalent, but Non-Deterministic pushdown automata and Deterministic pushdown automata aren't ?
πŸ‘︎ 11
πŸ’¬︎
πŸ‘€︎ u/pigiou
πŸ“…︎ Jul 06 2020
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.