Exercises (session 11)

icon

11

pages

icon

English

icon

Documents

2011

Écrit par

Publié par

Le téléchargement nécessite un accès à la bibliothèque YouScribe Tout savoir sur nos offres

icon

11

pages

icon

English

icon

Ebook

2011

Le téléchargement nécessite un accès à la bibliothèque YouScribe Tout savoir sur nos offres

ExercisesFOSSEEDepartment of Aerospace EngineeringIIT Bombay1 May, 2010Day 2, Session 5FOSSEE (IIT Bombay) Exercises 1 / 10Problem 1.1The aliquot of a number is defined as: the sum of theproper divisors ...
Voir Alternate Text

Publié par

Publié le

27 juin 2011

Nombre de lectures

202

Langue

English

FOSSEE (IIT Bombay)
Exercises
FOSSEE
Department of Aerospace Engineering IIT Bombay
1 May, 2010 Day 2, Session 5
Exercises
1 / 10
Problem 1.1
The aliquot of a number is defined as: the sum of the properdivisors of the number. For example: aliquot(12) = 1 + 2 + 3 + 4 + 6 = 16. Write a function that returns the aliquot number of a given number.
FOSSEE (IIT Bombay)
Exercises
2 / 10
Problem 1.2
Pair of numbers (a, b) is said to beamicableif aliquot number of a is b and aliquot number of b is a. Example:220, 284 Write a program that prints all four digit amicable pairs. 20 m
FOSSEE (IIT Bombay)
Exercises
3 / 10
Problem 2
Given a string of numbers like, “1, 3-7, 12, 15, 18-21”, produce the following list [1,3,4,5,6,7,12,15,18,19,20,21]
30 m
FOSSEE (IIT Bombay)
Exercises
4 / 10
Problem 3
Given a list of words, find all the anagrams in the list. Solve the problem without using dictionaries.
FOSSEE (IIT Bombay)
Exercises
5 / 10
Problem 4
Count frequencies of words in a file named ’holmes.txt’. 55 m
FOSSEE (IIT Bombay)
Exercises
6 / 10
Problem set 4
Central difference sin(x+h) −sin(xh) 2h
1
In In In
[]: []: []:
x = linspace(0, y = sin(x) deltax = x[1] -
2 pi, *
x[0]
100)
Given this, get the finite difference of sin in the range 0 to 2*pi
FOSSEE (IIT Bombay)
Exercises
7 / 10
Problem set 4
Central difference sin(x+h) −sin(xh) 2h
1
In In In
[]: []: []:
x = linspace(0, y = sin(x) deltax = x[1] -
2 pi, *
x[0]
100)
Given this, get the finite difference of sin in the range 0 to 2*pi
FOSSEE (IIT Bombay)
Exercises
7 / 10
Problem Set 5
5.1Write a function that plots any regular n-gon given n. 5.2Consider the logistic map,f(x) =kx(1x), plot it fork=2.5,3.5 and 4 in the same plot.
FOSSEE (IIT Bombay)
Exercises
8 / 10
Problem Set 5
3
Consider the iteration xn+1=f(xn)where f(x) =kx(1x). Plot the successive iterates of this proc as explained below.
FOSSEE (IIT Bombay)
Exercises
9 / 10
Problem Set 5.3
Plot the cobweb plot as follows: 1 Start at(x0,0)(=i=0) 2 Draw a line to(xi,f(xi)) 3 Setxi+1=f(xi) 4 Draw a line to(xi+1,xi+1) 5 (i=i+1) Repeat from 2 for as long as you want 6
75 m
FOSSEE (IIT Bombay)
Exercises
10 / 10
Voir Alternate Text
  • Univers Univers
  • Ebooks Ebooks
  • Livres audio Livres audio
  • Presse Presse
  • Podcasts Podcasts
  • BD BD
  • Documents Documents
Alternate Text