Write two versions of a factorial function

Assignment Help Python Programming
Reference no: EM132112802

Python help!!!

You need to write a few functions in Python.

Write two versions of a factorial function.

#This is the iterative version that uses a loop with an accumulator. Given n, return n!.

# ifac

def ifac(n):

...

#This is a recursive solution where:

#rfac(n) = 1, if n=0

# =n * rfac(n-1), otherwise.

# rfac

def rfac(n):

...

#Permutations - Implement the function perm(n,r) that returns the number of ways to arrange r items out of a set of n items.
# perm

def perm(n,r):

...

#Combinations - returns the number of ways to choose r items out of a set of n items where order does not matter.
# comb

def comb(n,r):

...

#Fibonacci Numbers that returns the nth Fibonacci number. The fibonacci sequence starts with 0,1. Each successive number is calculated by summing the previous two numbers. This is a recursive function.
# fib

def fib(n):

...

#Memoization - uses memoization to greatly speed up the calculation. Use a dictionary to memoize each value of fib(n) as they are computed.
# mfib

def mfib(n):

...

#Pascal's Triangle - construct pascal's triangle, each number at a given (row, column) locationcan be computed by summing the two numbers above it. The numbers on the edges are always 1. The function below computes the number at the given (rwo, col) by using the formula above. This is a recursive function. The base case is when (row, col) corresponds to one of the edges. Otherwise, it sums the two values above.
# pascal

def pascal(row, col):

...

#Memoization - make a new function called mpascal(row,col) that uses memoization to speed up the computation.

# mpascal

def mpascal(row, col):

...

Reference no: EM132112802

Questions Cloud

Write a function that takes as input the cost of the item : Write a function that takes as input the cost of the item that you are purchasing and a Boolean variable indicating.
Current and future state of the management : BN305 - Virtual Private Network - Describe architectural VPN design for small, medium and large businesses and corporations
Calculate the amount of money a person would earn : Write a program that calculates the amount of money a person would earn over a period of time if their salary is one penny the first day, two pennies.
Write a test program that creates two fan objects : Write a test program that creates two Fan objects. A one-argument constructor that creates fan. provide speed value.
Write two versions of a factorial function : You need to write a few functions in Python. Write two versions of a factorial function.
Create a python program that takes as a cipher-text : Write a python program that takes as a cipher-text, decrypts the cipher-text as described above and returns the message.
Write a program that plays the tic-tac-toe game : Write a program that plays the tic-tac-toe game. Two players take turns clicking an available cell in a 3 x 3 grid with their respective tokens .
Prevent loss of revenue due to used product markets : Suppose that in order to prevent loss of revenue due to used product markets, smart phone providers successfully lobby the government to make it illegal to buy
Display the amounts after the first five years : When money is invested at 5% interest compounded annually, the amount at the end of each year is 1.05 times the amount at the beginning of that year.

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd