• Keine Ergebnisse gefunden

Introduction to Mathematical Software – Winter Term 2010/2011 Solution 1

N/A
N/A
Protected

Academic year: 2022

Aktie "Introduction to Mathematical Software – Winter Term 2010/2011 Solution 1"

Copied!
1
0
0

Wird geladen.... (Jetzt Volltext ansehen)

Volltext

(1)

Introduction to Mathematical Software – Winter Term 2010/2011 Solution 1

(1.5) (1.5) (1.2) (1.2)

(1.4) (1.4)

(2.1) (2.1) (1.3) (1.3)

(1.6) (1.6)

(2.4) (2.4) (2.2) (2.2) (1.1) (1.1)

(2.5) (2.5) (2.3) (2.3)

Problem 3: Basic Maple Usage

613 36

3 2

1

42 1

Problem 4: Prime Numbers

false true true true false

1

Referenzen

ÄHNLICHE DOKUMENTE

PD Dr. Get familiar with the plots-package.. Use the same Interval as range of your plot. Have a look at help topic plot/options in order to find out how to do that. Also try to

KochPoints generates a segment of the snow flake by repeatedly distorting the initial

The series of inverses of prime numbers (usually called the Harmonic Series of Primes) diverges, although very slowly. We could try something like

In this exercise, we implement Euclid’s algorithm for finding the greatest common divisor of two natural numbers that you have come across in your linear algebra class. This will

Modify the greatest common divisor program that you have implemented in Exercise 2.1 such that the actual computation of the gcd is done in a function.. The function should accept

In the last lecture, you saw the implementation of a class for representing larger integers, BiggerInt, with an implemen- tation of the BiggerInt *add class member function.. a)

In the naïve approach we iteratively find the largest power of 2 which is less than or equal to the number we want to convert, place a 1 at the corresponding position of the

The algorithm is very inefficient as the number of recursive calls to Fib(n) grows exponentially in n. It is much more efficient to compute the Fibonacci numbers iteratively, as