5. Dany jest ciąg arytmetyczny a =1+n, n∈N. Jak obliczyć sumę 100 n pierwszych wyrazów tego ciągu?
a) total = 1
for i in range(1,100):
total += i
print(total)
b) total = 0
for i in range(1,101):
total += i+1
print(total)
c) total = 1
for i in range(1,99):
total += i
print(total)
d) total = 0
for i in range(1,102):
total += i+1
print(total)
6. Jak utworzyć listę, składającą się z 10 wyrazów ciągu geometrycznego, gdzie a =1 oraz q= ½ ?
a) n = 0
lst = [1]
while n < 10:
m = lst[n]/2
lst.append(m)
n += 1
print(lst)
b) n = 1
lst = [1]
while n < 10:
m = lst[n]/2
lst.append(m)
n += 1
print(lst)
c) n = 1
lst = [1]
while n < 11:
m = lst[n]/2
lst.append(m)
n += 1
print(lst)
d) n = 0
lst = [1]
while n < 9:
m = lst[n]/2
lst.append(m)
n += 1
print(lst)
7. Dana jest lista lt = [-3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9] . Jak obliczyć sumę ujemnych wyrazów?
a) tot = 0
for i in range(1,len(lt)):
if lt[i] < 0:
tot += lt[i]
b) tot = 0
for i in range(-3,9):
if lt[i] < 0:
tot += lt[i]
c) tot = 0
for i in range(0,len(lt)):
if lt[i] < 0:
tot += lt[i]
d) tot = 0
for i in range(-3,9):
if lt[i] < 0:
tot += lt[i]
8 Dana jest lista lt = [-3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9] . Co się policzy?
tot1 = 0
j = 0
while j < len(lt):
tot1 += lt[j]
if lt[j] > 0:
break
j += 1
print(tot1)
a) 0
b) -6
c) -5
d) -3
Błagam o pomoocccc