Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Write a function that takes as arguments a FSA f, a regular expression r, and a string s, and returns True if f and
1. Write a function that takes as arguments a FSA f, a regular expression r, and a string s, and returns True if f and r are equivalent with respect to that string. That means that either both f accepts s and r matches s or both f and r reject the string. Your function should False otherwise.
2. Give an example FSA and RE that are equivalent and use your function and at least two example strings, a string which they both accept and a string which they both reject.
*using python
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started