看板 Math 關於我們 聯絡資訊
不好意思,想不到這題怎麼處理,希望有人可以給點想法或見解。 題目: Find a system of recurrence relations for the number of n-digit binary sequences with k adjacent pairs of 1s and no adjacent pairs of 0s. PS:是指k組相鄰的1和沒有相鄰的0嗎? 答案: a_n,k = a_n,k,0 +a_n,k,1 a_n,k,0 = a_(n-1),k,1 a_n,k,1 = a_(n-1),k,0 + a_(n-1),(k-1),1 where a_n,k,0 = such sequences staring with a 1 a_n,k,1 = such sequences staring with a 0 謝謝! -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 220.134.252.142
cuttlefish :yes 07/22 01:04