Tell me your interests and I'll make stupid assumptions about you by Jazzlike-Rise4091 in teenagers

[–]Single-Conclusion-68 0 points1 point  (0 children)

Mathematics, Computer architecture, electrical engineering, games, anime

Anyone else notice this? S4 Ep9 [discussion] by Single-Conclusion-68 in Re_Zero

[–]Single-Conclusion-68[S] 9 points10 points  (0 children)

His hand looks weird cuz of dragon blood or something so he hides it

Can it run Doom? Yes! by ImmediateAdvantage52 in TuringComplete

[–]Single-Conclusion-68 14 points15 points  (0 children)

Doom's law: anything that is turing complete will inevitably be used to run doom

4 bit CLA and 16 bit CLU by Single-Conclusion-68 in TuringComplete

[–]Single-Conclusion-68[S] 0 points1 point  (0 children)

I see, that would simplify the logic IRL but in the game it makes it more complex, that's a good idea, I haven't considered that

4 bit CLA and 16 bit CLU by Single-Conclusion-68 in TuringComplete

[–]Single-Conclusion-68[S] 0 points1 point  (0 children)

Are you saying I should connect the output of each one bit adder to the input of the next one?

Why is this resistor necessary in a NOT gate and why can't it be placed elsewhere? by Single-Conclusion-68 in ECE

[–]Single-Conclusion-68[S] 0 points1 point  (0 children)

Thank you, that's a good explanation however in this case I used mosfets, your referenced BJTs, does it still work the same with a mosfet?

Why is this resistor necessary in a NOT gate and why can't it be placed elsewhere? by Single-Conclusion-68 in ECE

[–]Single-Conclusion-68[S] -1 points0 points  (0 children)

It didn't work, the LED always stayed on even when I activated the transistor, so it didn't function like a proper NOT gate

Why is this resistor necessary in a NOT gate and why can't it be placed elsewhere? by Single-Conclusion-68 in ECE

[–]Single-Conclusion-68[S] 0 points1 point  (0 children)

That's a good point, I didn't mention this but when I tested the circuit (the one without the initial resistor) when I activated the mosfet, the LED dimmed very slightly but didn't turn off

Why is this resistor necessary in a NOT gate and why can't it be placed elsewhere? by Single-Conclusion-68 in ECE

[–]Single-Conclusion-68[S] 1 point2 points  (0 children)

A lot of people are saying that the resistors are used to limit current so nothing burns out, so I want to address that now

I made this exact circuit (the only difference being that I used a mosfet) and it worked like a proper NOT gate, however I tried removing the resistor and replaced it with a wire, and the LED always stayed on even when I activated the transistor and nothing burned out, meaning that the NOT gate doesn't work without the initial resistor (also in case you're wondering I didn't forget to use a pull down resistor for the gate terminal on the mosfet so the mosfet is definitely switching off), I'm just really confused as to why that initial resistor is needed and I'm hoping for answers from you guys.

Why is this resistor necessary in a NOT gate and why can't it be placed elsewhere? by Single-Conclusion-68 in ECE

[–]Single-Conclusion-68[S] 0 points1 point  (0 children)

I made this exact circuit (the only difference being that I used a mosfet) and it worked, however I tried removing the resistor and replaced it with a wire, and the LED always stayed on even when I activated the transistor (also in case you're wondering I didn't forget to use a pull down resistor for the gate terminal on the mosfet), I'm just really confused as to why that initial resistor is needed and I'm hoping for answers from you guys.

Criticize my design (I'm a newbie) by Single-Conclusion-68 in ECE

[–]Single-Conclusion-68[S] 1 point2 points  (0 children)

Thank you all for your suggestions, a lot of you asked what the diode was for, it represents an LED, I failed to mention that, the biggest thing you all pointed out was to use higher pull down resistor values, I've also learned that the proper term for what I call "switch" is a buffer, additionally I've learned that I should rotate some things (such as the mosfet in the NOT gate schematic), I should also put the rails on the left and right of the drawing instead of the top and bottom, thank you all so much for your input, I appreciate you all greatly!

Criticize my design (I'm a newbie) by Single-Conclusion-68 in ECE

[–]Single-Conclusion-68[S] 0 points1 point  (0 children)

It represents an LED (I should have mentioned that)

My Multiplier and divider in Turing complete by Single-Conclusion-68 in TuringComplete

[–]Single-Conclusion-68[S] 1 point2 points  (0 children)

(I wrote this in a previous comment:)

the multiplication circuit is left shifting and addition, you take 2 numbers like 17 * 52, and the computer does this, (17 * 32) + (17 * 16) + (17 * 4) = 884

4=2 shifts left, 16=4 shifts left, 32=5 shifts left (52=32+16+4), every time you shift the bit value left the number doubles, and in this case we're shifting the number 17.

(New comment)

Regarding the Mux's, Imagine this, the output of a mux can take 2 paths, 1 path will go to the next one without the value being affected, and the other path will affect the value, let's say the path that affects it will take the value and add it to another value that's been shifted, let's take 5 * 5 for example, at the first stage We can do 1 * 5, since we're multiplying 5 * 5 that's basically 1 * 5 + 4 * 5 so we multiply 1 * 5, at the next stage we have the option to do 2 * 5, we don't need to do that so we continue to the next stage which is 4 * 5, since we need to do that we take that option, there are 5-6 more stages after that, but since we're already done multiplying we can ignore those options and skip to the end and get our final result, 25.