Homework 3 Solutions 1 True or False a







![#5. What does the Perl expression: s/(^[A_Z]{1})([az]+). sgml/12. html/g tr/a-z/A-Z/ say to do? • #5. What does the Perl expression: s/(^[A_Z]{1})([az]+). sgml/12. html/g tr/a-z/A-Z/ say to do? •](https://slidetodoc.com/presentation_image_h/fee88a946704be9995083fc8395bf279/image-8.jpg)

- Slides: 9

Homework #3 Solutions

#1. True or False a) a a b a matches a* + b* b) babab matches b (ab)* T T F F c) If A = F then A B = F for all languages B T d) If A = {e} then A B = F for all languages B T F e) If A = a* and S = {a, b}, then S* - A = b* T F F

#2. Write regular expressions for the set of strings of 0’s and 1’s with at most one pair of consecutive 1’s • Exercise says “at most one” occurrence of “ 11”, so start with (e + 11) • Now build around it the combination of 1’s and 0’s that will prevent another occurrence of “ 11”: In front: (0 +10)* After: (0 + 01)* • So altogether: (0 +10)* (e + 11) (0 +10)*

#3. Draw the graph for the following DFA and then convert to regular expression. This gives you an idea how messy these are, and how you’d really like to plug them into a computer program! 1. Using Sudkamp method: Eliminating “r”:

#3 continued • Then eliminating “s” • Eliminating “q” • Now we * the expression on the loop to get the regular expression: (1 + (0(0 + 10*1))(1(0 + 10*1))*0)* Whew!

#3 continued Using Kozen Method removing q apppqrs = appprs + apqprs (aqqprs )* aqpprs appprs = 1* apqprs = 1*0 (0 +10*1) aqqprs = 01*0 (0 + 10*1) + 1 (0 +10*1) aqpprs = 01* So apppqrs = 1* + 1*0 (0 +10*1) (01*0 (0 + 10*1) + 1(0+10*1 )* 01* I’m sure this can be simplified. If anyone wants to send me their simplification, I’ll post it with full credit to the sender!

#4. Does (R +S)* S = (R*S)* ? Justify your answer • No • Counter-example: if e is not in S, then they are not equal.
![#5. What does the Perl expression: s/(^[A_Z]{1})([az]+). sgml/12. html/g tr/a-z/A-Z/ say to do? • #5. What does the Perl expression: s/(^[A_Z]{1})([az]+). sgml/12. html/g tr/a-z/A-Z/ say to do? •](https://slidetodoc.com/presentation_image_h/fee88a946704be9995083fc8395bf279/image-8.jpg)
#5. What does the Perl expression: s/(^[A_Z]{1})([az]+). sgml/12. html/g tr/a-z/A-Z/ say to do? • Converts file names with extension “sgml” to file names with extension “html”, • and changes all letters to upper-case

#6. What do you think the regular expression on the Module 3 page represents? • Looks like “social security numbers”
True and False and True False and False
Homework 9 Solutions 1 True or False a
FALSE FRIENDS AND SUFFIXES FALSE FRIENDS False friends
Warm Up True or False If FALSE make
Warm up 826 True or False if false
Warm up True false If false explain why
PERSONAL FINANCE TRUE OR FALSE REVIEW TRUE OR
Homework Solutions for Dynamics Homework 8 Solutions 4