EE103L Introduction to Python Assignment 7 1. The Fibonacci
Sequence is the series of numbers: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, …
The next number is found by adding up the two numbers before it: •
the 2 is found by adding the two numbers before it (1+1), • the 3 is
found by adding the two numbers before it (1+2), • the 5 is (2+3), •
and so on! Write a code that by getting the first two elements of the
Fibonacci Sequence, calculates the first 20 elements of the Fibonacci
Sequence and stores them in a vector. Print out the result in the
report. 2. Assume that () = !"#$% (!), define odd and even
decomposition function based on the x(t) and plot the output.