<< Prev Showing: 336-340 of 418 Next >>
· 311-315 · 316-320 · 321-325 · 326-330 · 331-335 · 336-340 · 341-345 · 346-350 · 351-355 · 356-360 · 361-365 ·let (f_k) be the Fibonacci sequence, show that: a) For every integer n>= 0, we have f_4(n+1) = 3f_4n+1 + 2f_4n b) Use a) in order to prove by induction that ∀n Є N, 3 | f_4n
Subject:
Math
Topic:
Discrete Structures
Posting ID:
106633
OTA ID:
104808
Discrete mathematics: Boolean Product
Boolean Product. See attached file for full problem description.
Subject:
Math
Topic:
Discrete Structures
Posting ID:
106788
OTA ID:
104808
Solve the system of congrunence
Solve the system: 2x ≡ 1 (mod 3) 3x ≡ 2 (mod 5) 5x ≡ 3 (mod 2)
Subject:
Math
Topic:
Discrete Structures
Posting ID:
106819
OTA ID:
104808
1) If f is the mod-5 function, compute each of the following. a) f(17) b) f(48) c) f(169) 3) Convert (1011101)2 to base 16 (i.e., hex) 4) Find the sum of products expansion of this Boolean function F(x,y) that equals 1 if and only if x = 1. Note: one can write out the phrase “y complement” to represent the notation for the complement of y.
Subject:
Math
Topic:
Discrete Structures
Posting ID:
106825
OTA ID:
103846
Show, how the given binary search algorithm executes in case of given key value.
Given algorithm looks for a value in a nondecreasing sequence and returns the index of the value if it is found or 0 if it is not found. Input: A sequence si, ...... ,sj (j >= i >= 1) sorted in nondecreasing order, a value key, i, and j Output: The output is an index k for which sk = key, or if key is not in the sequence, the output is the value 0. binary_search(s, i, j, key) { if (i > j) // not found return 0 k = (i + j)/2 if (key == sk) // found return k if (key < sk) // search left half j = k - 1 else // search right half i = k + 1 return binary_search(s, i, j, key) } Consider th... click for more
Subject:
Math
Topic:
Discrete Structures
Posting ID:
106875
OTA ID:
105381
<< Prev Showing: 336-340 of 418 Next >>
· 1-5 · 6-10 · 11-15 · 16-20 · 21-25 · 26-30 · 31-35 · 36-40 · 41-45 · 46-50 · 51-55 · 56-60 · 61-65 · 66-70 · 71-75 · 76-80 · 81-85 · 86-90 · 91-95 · 96-100 · 101-105 · 106-110 · 111-115 · 116-120 · 121-125 · 126-130 · 131-135 · 136-140 · 141-145 · 146-150 · 151-155 · 156-160 · 161-165 · 166-170 · 171-175 · 176-180 · 181-185 · 186-190 · 191-195 · 196-200 · 201-205 · 206-210 · 211-215 · 216-220 · 221-225 · 226-230 · 231-235 · 236-240 · 241-245 · 246-250 · 251-255 · 256-260 · 261-265 · 266-270 · 271-275 · 276-280 · 281-285 · 286-290 · 291-295 · 296-300 · 301-305 · 306-310 · 311-315 · 316-320 · 321-325 · 326-330 · 331-335 · 336-340 · 341-345 · 346-350 · 351-355 · 356-360 · 361-365 · 366-370 · 371-375 · 376-380 · 381-385 · 386-390 · 391-395 · 396-400 · 401-405 · 406-410 · 411-415 · 416-418 ·Page generated in 0.096 seconds