Skip to main content
Advice
0 votes
3 replies
141 views

I designed Turing machine that accepts the input over the language: {a^i b^j | j is divisible by i, i ≥ 2, j ≥ 2} This Turing machine should accept and reject the stings as following: aabbbb | ...
Badar Ul Islam's user avatar
2 votes
0 answers
93 views

I'm trying to implement some logic within a system of microcontroller IRQs and event callbacks, that fundamentally require the use of a complex state machine in order to behave correctly. Regular ...
AJMansfield's user avatar
  • 4,212
1 vote
1 answer
1k views

I am trying to solve the following Turing machine challenge: The number choice function The number choice function is defined as follows. INPUT: a sequence 𝑘, 𝑥1, 𝑥2,..., 𝑥𝑛 where 𝑘 is a ...
Gwin Lim's user avatar
1 vote
1 answer
86 views

When specifying required versions of a dependency in npm, we can specify ranges of versions. For example: 1.2.7 || >=1.2.9 <2.0.0 Specification: https://github.com/npm/node-semver?tab=readme-ov-...
carl's user avatar
  • 13
0 votes
1 answer
130 views

I have a large set of data, 4000 rows+. each row is associated with metric data that is collected daily. Metric table is at over 1.1 million rows. for example: Item table: Id Item 1 Hello 2 World ... ....
Greg's user avatar
  • 151
1 vote
1 answer
236 views

I have this finite automata (FA) and want to write its language. I think its L={x E {0,1} | {x with subset of 00 and ends in 1} and it would help to know what the type of FA it is. I think it's a DFA ...
cool cat's user avatar
0 votes
0 answers
33 views

I recently stumbled upon an optimization problem while working on structural analysis. While I'm confident in my MATLAB skills as an aerospace engineer, I must admit my theoretical knowledge in ...
user23509645's user avatar
0 votes
1 answer
230 views

Just learned about DPDA's on my Theory of computation class. Professor gave us a semester task to create a deterministic pushdown automaton state diagram that is able to accept all strings multiples ...
Santiago Lemus Vallejo's user avatar
1 vote
1 answer
97 views

How to find the grammar of this language: La = {ww^r: w e {0,1}^*, w ends with 1} ? r: is reverse Here is my solution: S -> 0S0|1S1| 0|1|E(epsilon) What can I change here or is the solution the ...
sourga bah's user avatar
0 votes
1 answer
177 views

In this Puzzling SE post, there's a maze with infinitely nested inside itself. Inspired by this, consider the following graph problem: Setup: A graph G with vertices V and undirected edges E And ...
Davis Yoshida's user avatar
0 votes
2 answers
576 views

I am trying to solve this popular problem: "Given an integer array, divide the array into two subsets, A and B, while respecting the following conditions. the intersection of A and B is null. ...
Jonathan's user avatar
  • 1,966
2 votes
1 answer
5k views

I'm trying to solve this challenge: Design a DFA for all binary strings having an even number of 0's or containing exactly two 1's I'm a bit confused with this question. I had tried to come up with ...
just coding's user avatar
0 votes
1 answer
620 views

The DFA for even numbers of and b is this DFA for even numbers of a and b but the DFA of even and equal number of a and b is not available L={\epsilon,aabb,abab,baba,bbaa,aaaabbbb,aabbaabb,bbaabbaa,...
SOURAV's user avatar
  • 1
0 votes
0 answers
92 views

I’m doing research on the models of computation and how they work and what they are. I would like someone To help me understand what these are and help me find books or anything to research them. I’...
Lukar's user avatar
  • 11
-2 votes
1 answer
40 views

Let FT be the class of all finite languages over {0,1}. Suppose FL is countable, so we can enumerate all members of FL as FL = {L_0, L_1, L_2, ...} Meanwhile, we also enumerate all strings over the ...
Cyberpunk2020's user avatar

15 30 50 per page
1
2 3 4 5
42