100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Assignments week 1 Computational neuroscience $4.51   Add to cart

Case

Assignments week 1 Computational neuroscience

 16 views  0 purchase
  • Course
  • Institution

Score 95/100 points.

Preview 1 out of 3  pages

  • June 21, 2022
  • 3
  • 2021/2022
  • Case
  • M. senden
  • 8-9
avatar-seller
Before you turn this problem in, make sure everything runs as expected. First, restart the
kernel (in the menubar, select Kernel→Restart) and then run all cells (in the menubar,
select Cell→Run All).
Make sure you fill in any place that says YOUR CODE HERE or "YOUR ANSWER HERE", as
well as your name and collaborators below:
NAME = Kiki Boumans
COLLABORATORS =



Assignments week 1
Complete the assignments below, save the notebook and submit them on canvas.

Assignment 1.1
Many functions rely on loops to create complex behavior. For example, multiplication could
be implemented as a loop of additions. Write a function that multiplies two natural
numbers (positive integers) by using a loop of additions.
def multiplication(a,b):
"""
Multiplies two numbers by using a loop of additions.
"""
my_sum = 0
if b >= 0:
while a >= 1:
a = a - 1
my_sum = my_sum + b
else:
return 0
return my_sum



from nose.tools import assert_equal
a = 3
b = 6
assert_equal(multiplication(a,b), a * b)

a = 2
b = -3
assert_equal(multiplication(a,b), 0)

Assignment 1.2
Write a function that checks whether its input is a multiple of 3 and returns 1 if it is and 0 if
it is not. Hint: think back of remainders in integer division.

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller kikiboumans. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $4.51. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

77333 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$4.51
  • (0)
  Add to cart