Use inductive reasoning to predict the most probable next number in the following lists.
a) 5, 10, 15, 20, 25, ?
b) 2, 5, 10, 17, 26, ?
Consider the following procedure: Pick a number. Multiply the number by 9, add 15 to the product,
divide the sum by 3, and subtract 5. Complete the above procedure for several different numbers. Use
inductive reasoning to make a conjecture about the relationship between the size of the resulting number
and the size of the original number.
Design a circuit that generates 9's compliment of a BCD digit. Optimize your functions, taking advantage of don't care conditions where necessary, and implement using only 2-input NOR gates.
Explain and illustrate why a NAND gate is considered a universal gate
implement a two-level OR-AND logic circuit given the truth table of 3 inputs below:
A B C F
0 0 0 0
0 0 1 0
0 1 0 1
0 1 1 1
1 0 0 0
1 0 1 1
1 1 0 1
1 1 1 0
Given that F(X,Y,Z) = "\\bar{X}" + Z(X+"\\bar{Y}" ) use algebraic manipulation to derive the canonical POS expression for F
Do the following in given bases
a) B6F16-3748. give answer in base 2
b) 01000101BCD - 70910 in 8-bit 2's complement
Perform following conversion
a) 0111011102 to gray code
b) 10110111 gray code to binary
c) 56610 to 84-2-1 code
d) -8910 to 8-bit sign magnitide and 1's complement
. State the converse, contrapositive, and inverse of each of these conditional statements. A positive integer is a prime only if it has no divisors other than 1 and itself.
What is the number of subsets of a set with n elements, containing a given element (when element becomes fixed, part of every subset)?
U={1,2,3,4,5,6,7,8,9,10}
A={2,3,4,5,8}
B={2,4,6,8,10}
C={1,3,5,7,9}
Instruction: Solve the given below using the sets above
1.( (C U A)-B)’ ∩ (B’ U A)
2.(((BUA)’ U (CUA)’) U ((A-B)’ ∩ (B-C)’))