This channel is gonna blow up someday. It deserves more subscribers. Too good production quality.
@benr33462 жыл бұрын
aaaand a legend was born...
@yousefali9952 жыл бұрын
I don't know why this channel isn't getting millions of views
@PG-jv5nw2 жыл бұрын
You are truly a great educator. It takes hours and hours to understand this topic but you explained in just few minutes. Your video makes me think how much garbage is thown at us in college.
@adimasariefrahman85552 жыл бұрын
this channel should be recognize by peoples
@Anjali-w3f4n10 ай бұрын
I generally read comments before watching a video, so, to help others find this amazing video, here's my review - 5⭐
@computersciencestudent11292 жыл бұрын
such a great example it cleared all doubts I had for converting from non-deterministic to dertinistic thank you !!!
@carldea3 ай бұрын
Wow. So impressed. It's time to get rid of if statements. Just discovered this channel. How the explanation fits on the screen is beyond me. Thank you sir!
@keegster71672 жыл бұрын
Thanks!! I’m studying in a graduate course for human language technology and I couldn’t quite see the picture of what was going on with this until now. Beautiful video btw
@BoredTAK50005 ай бұрын
This is so helpful. MILES better than my uni lecturer.
@thesuitedsaltshaker8388Ай бұрын
Thank you, very clear and concise
@jacobmonster823410 ай бұрын
Incredibly easy thanks to you!
@jaybhavsar67412 жыл бұрын
Such a clear and fruitful explanation! Thank you sir!
@南霁云-w6u11 ай бұрын
WOW, This teacher looks really like my IELTS SPEAKING TEST officer😇 BTW, Thank you for your clear explanation.
@jediboybetos57592 жыл бұрын
Non-deterministic finite automata also has something called epsilon transitions. Can you make a video converting NFA with ε to DFA?
@Intermation2 жыл бұрын
That's a great idea. I was so focused on moving toward implementation in hardware (which doesn't address epsilon transitions) that I didn't think anyone would be interested.
@dylanpivo22642 жыл бұрын
Such a clear and well presented explanation. Well done and thanks so much!
@ValeriaGarciaHernandez19 күн бұрын
THIS IS SO GREAT, THANK YOU
@darkyoumemento53072 жыл бұрын
Beautiful explanation
@roccococolombo20448 ай бұрын
Ça ne peut être expliqué plus clairement. Bravo.
@bangvu2127 Жыл бұрын
Awesome. Thanks for the great explanation
@a_wheelbarrow Жыл бұрын
What if the original NDFA has multiple exit-states (let's say they are q2 and q3; q0 is our starting state and q1 is neither). Will our DFA's exit states be the ones that have BOTH/ALL of the NDFA exit states (so {q2, q3}, {q1, q2, q3}, {q0, q2, q3} and {q0, q1, q2, q3}) or if they have ANY of the NDFA's exit states (so {q1, q2}, {q2}, {q3} etc.)?
@angz271711 ай бұрын
didn't know Walter White gave CS lectures
@HarmonicPhilosophy2 жыл бұрын
Thank you.
@bhspringer2 жыл бұрын
Thank you that was amazing
@Intermation2 жыл бұрын
You're welcome! I appreciate the kind words.
@muhtasimsabab110114 күн бұрын
Hello sir, could you please make a video on factored FSM design? I'm really struggling with this concept.
@gabrielruszala44322 жыл бұрын
So so so helpful, thank you
@DavidLindes Жыл бұрын
Well, this is out of order, but having another example NFA helped me catch a bug in my code to create a DFA from one, based on the recent Computerphile video. Of course, I might also have to re-think some things, because I don't keep around the empty-set transitions (or state e, in your final form)... instead just returning False if there's not a transition defined between two states (and, for example, I don't define a transition for starting at a and getting a 1). I'm fairly certain the effect is the same, but it looks different. Interesting.
@cricketmaster76978 ай бұрын
Hey i had a question. Sometimes this method doesnt work and we need to use an epsilon transition method instead. How do we know if an NFA can be solved in the way described in this video and when we need to use the epsilon method?
@radocsaibalazs44992 жыл бұрын
Thank you so much this helped a lot!
@georgiaanast34623 ай бұрын
thank you!
@travisquigg24502 жыл бұрын
My only pet peeve is the squeaky sound of the marker. Other than that love the videos. Very informative!
@tiara76248 ай бұрын
Very nice thank you so much
@khaledalsouleman82909 ай бұрын
Good Work thanks a lot❤
@sohailshaikh786 Жыл бұрын
Nice explanation
@riddle-me-ruben11 ай бұрын
Wouldn’t “000” be rejected even though it should be accepted"? We have a 0, then any number of 1’s (in this case 0/none), and still end in a 0. But it gets rejected as it follows states a,b,c,e (rejected)
@riddle-me-ruben11 ай бұрын
Oh I see. Concatenation says we should start with 0, have any number of 1’s, then immediately end in 0 or 1. 000 should be rejected. As it does not immediately end in 0 but there is another 0 that follows.