What does it mean that a function is effectively calculable

Assignment Help Data Structure & Algorithms
Reference no: EM131950991

Exercise 0.1 What does it mean that a function is effectively calculable? Which functions are effectively calculable? Give at least one example and illustrate which formal schema(s) define(s) it.

Exercise 0.2 Explain the relation between decidability of a predicate and the calculability of a function.

Exercise 0.3 Describe informally the operations that can be performed by a Turing Machine. Which functions can a Turing Machine emulate?

Exercise 0.4 Design the table of instructions for a Turing Machine that starts with a tape containing a block of 1s and it is otherwise blank. The machine is started scanning the leftmost 1, it goes through the input, it adds a 1 on the first empty cell on the tape right of the input, and it halts.

Exercise 0.5 Design the table of instructions for a Turing Machine that starts with a tape containing a block of n 1s, followed by a blank, followed by a block of m 1s. The machine is started scanning the leftmost 1 of the block of n 1s, and halts scanning the rightmost 1 of a block of (n + 1) + (m - 1) 1s and it halts.

Exercise 0.6 Write a Turing Machine program for the Tursi Simulator that adds a 1 to the end of a input of 1s.

Exercise 0.7 Write a Turing Machine program for the Tursi Simulator that implements unary subtraction.

Exercise 0.8 Write a Turing Machine program for either the Tursi Simulator or the Racket emulator which implements addition as follows:
- the symbols valid for this machines are (), 1, 0
- the input is of the form r(1s01s)
- the output is of the form r(1s), where the list of 1s is the sum of the first and the second block.

Exercise 0.9 Can you tell if the following program halts or not?
d e f f (int n )
i f( n > 0 )
f ( n-2)
elsif ( n > 0 )
f ( n+2)
end
end

Exercise 0.10 What does the Church-Turing thesis say? Comment on its significance for Computing.

Exercise 0.11 Choose one old technology for memory and explain its working.

Exercise 0.12 Describe the working of the von Neumann architecture through the simulation for an instance of the subtraction function.

Exercise 0.13 Which was the first business computer in the UK?

Exercise 0.14 What is Moore's Law?

Exercise 0.15 Offer a brief comparison of characteristics for object-oriented, functional and imperative programming styles.

Exercise 0.16 Present a OO-style program for inverting lists. Comment its structure.

Exercise 0.17 Present a functional style program for appending lists. Com- ment its structure.

Exercise 0.18 In which ways does CS differ from other science like Physics?

Exercise 0.19 Explain in brief what does a formal correctness proof for a pro- gram establish, for example in terms of pre- and post-conditions.

Exercise 0.20 Give at least one example of miscomputation, be precise about the LoA considered.

Exercise 0.21 Explain what the hypothetical-deductive method is.

Exercise 0.22 Describe the steps for building a good model for a computa- tional experiment.

Exercise 0.23 Choose one of the pre-defined models in NetLogo. Offer a brief explanation of its working and aims. Formulate an hypothesis related to the model. Offer a test-bed (at least 10 runs) under different conditions to test the hypothesis. Report on the findings.

Exercise 0.24 What type of simulations are used in science? For which pur- poses is each of them most fit?

Exercise 0.25 Present a NetLogo procedure that includes at least recursion, if-then and one loop. Explain what the procedure does.

Exercise 0.26 Explain in which way can simulation help formulate new knowl- edge or clarify known phenomena.

Exercise 0.27 Write a NetLogo model to do the following:

1.There is a maximal number of 1000 turtles

2.Turtles own a property like ‘having food'

3. There is a fixed amount of turtles with food: ask first just one turtle to have food, then more, like 3 or 5

4. The turtles move in some well-defined way: for example they move in squares or zig-zag or anyway else

5. When turtles cross each other they pass food
Check that every turtle gets food. Is it faster or slower if a smaller amount of turtles have food at the beginning?

Exercise 0.28 Explain the difference between isomorphic, analogical and sim- ilarity relation between real-world and simulated properties.

Exercise 0.29 Write a NetLogo model to do the following:

1.There is a maximal number of 1000 turtles

2.Turtles own either a property like ‘having food' or one like ‘having water'

3.There is a fixed amount of turtles with food and a fixed with water

4.The turtles move in some well-defined way: for example they move in squares or zig-zag or anyway else

5.When turtles cross each other they pass food under the following conditions: if a turtle who has food crosses one without either food or water, it gives food; if a turtle who has food crosses one without food but with water, it gives food and receives water; if a turtle who has food crosses one with food and water, nothing happens; the same rules apply for tur- tles with water; a turtle with food and water changes to a pre-defined colour.
Check that every turtle gets food and water.

Exercise 0.30 Recall the definition of Graph. What is the difference between total, random and scale-free graphs?

Reference no: EM131950991

Questions Cloud

Pcn stock value be if the dividend : What would PCN's stock value be if the dividend were expected to grow at a constant rate of negative 5%.
Find two or three academic articles : Find two or three academic articles that discuss the topic you selected. Critically analyze the articles.
Determine the value of the company stock : If investors require a 12% rate of return on investments of similar risk, determine the value of the company's stock.
Company current expected stock price : If the current risk-free rate is 5% and the required rate of return on the market portfolio is 12%, what is the company's current expected stock price?
What does it mean that a function is effectively calculable : CSD3203 – History and Philosophy of Computing - What does it mean that a function is effectively calculable? Which functions are effectively calculable?
What are pro forma free cash flows for year? 3 : What are your pro forma earnings for year? 3? What are your pro forma free cash flows for year? 3?
Write about the weakness and the strengths for each articles : Find three academic articles that discuss the topic and write about the weakness and the strengths for each articles.
What do you advise red corp to do : What do you advise Red Corp to do? Tell Blue Corp about the databases online, and hope they will agree to a mutual good faith non-use of competitor information?
What is the clean price of this bond : The next interest payment will be paid 4 months from today. What is the clean price of this bond if the market rate of return is 6.5 percent?

Reviews

Write a Review

Data Structure & Algorithms Questions & Answers

  Implement an open hash table

In this programming assignment you will implement an open hash table and compare the performance of four hash functions using various prime table sizes.

  Use a search tree to find the solution

Explain how will use a search tree to find the solution.

  How to access virtualised applications through unicore

How to access virtualised applications through UNICORE

  Recursive tree algorithms

Write a recursive function to determine if a binary tree is a binary search tree.

  Determine the mean salary as well as the number of salaries

Determine the mean salary as well as the number of salaries.

  Currency conversion development

Currency Conversion Development

  Cloud computing assignment

WSDL service that receives a request for a stock market quote and returns the quote

  Design a gui and implement tic tac toe game in java

Design a GUI and implement Tic Tac Toe game in java

  Recursive implementation of euclids algorithm

Write a recursive implementation of Euclid's algorithm for finding the greatest common divisor (GCD) of two integers

  Data structures for a single algorithm

Data structures for a single algorithm

  Write the selection sort algorithm

Write the selection sort algorithm

  Design of sample and hold amplifiers for 100 msps by using n

The report is divided into four main parts. The introduction about sample, hold amplifier and design, bootstrap switch design followed by simulation results.

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