ITECH1400 Foundations of Programming - Biorhythms Assignment

Assignment Help Python Programming
Reference no: EM132377856

ITECH1400 Foundations of Programming

Federation University

Biorhythms: Theory & Practice

Overview

In this assignment you will provide a Python script which will calculate the Biorhythms for any individual and present the data graphically using libraries and a common algorithm.

Learning Outcomes Assessed

The following course learning outcomes are assessed by completing this assessment:

K1. Identify and use the correct syntax of a common programming language.

K2. Recall and use typical programming constructs to design and implement simple software solutions.

K3. Reproduce and adapt commonly used basic algorithms.

K4. Explain the importance of programming style concepts (documentation, mnemonic names, indentation)

S2. Write and implement a solution algorithm using basic programming constructs.

S3. Demonstrate debugging and testing skills whilst writing code.

A1. Develop self-reliance and judgement in adapting algorithms to diverse contexts.

A2. Design and write program solutions to identified problems using accepted design constructs.

Assessment Details Theory

Biorhythms were developed by Wilhelm Fließ, a colleague of Sigmund Freud, in the 19th century and were very popular in the 1970s (Troutman, 1978); despite criticisms they are still used today in fields such as work safety to sports performance (Arab, Omidvari, & Nasiripour, 2014; Habibi, Mohammadi, Ghanbary Sartang, & Zeinodini, 2016; Zareian, Rabbani, & Saeedi, 2014).

The theory underlying Biorhythms proposes that, from birth, three cycles: physical, emotional and intellectual affect our performance. Understanding these cycles can help to optimise our potential.

1354_Biorhythm chart.jpg

Figure 1

Biorhythm chart over the first 66-day period after birth

Although there are many references available, the paper by Troutman (1978) has been attached as an early computer application.

(Spend a little time looking at the code at the end of this paper. Consider all the GO TO statements in the code and how it affects readability. Would this code be easy to modify? Debug? Compare this with the way we write code today - refer to the 3 structures given by Boehm and Jacopini in the additional material in week 1.)

Your main task is to develop a Python application that can display Biorhythms for any person given their date of birth and the target date. You should be able to provide the Biorhythms for a suitable spread around the target date as well.


Two algorithms to determine the day of any date have been provided - you are to implement one of these in a function which you call in your code to add the day of the week to your graph annotation.

Using a few carefully chosen dates, demonstrate that your day of the week function works correctly. (Here we don't use a Python library function for this so that you might better appreciate libraries.)

Practice

The last stage is to apply the Biorhythm code that you have implemented. There are many ways to do this, for example:

Choose a favourite sports person - Roger Federer or Serena Williams for example. How were their Biorhythms in their last tennis match? Did they win? If not what were their adversary's Biorhythms like?

Take a celebrity - a famous actor - Clark Gable or Marilyn Monroe. Clark Gable had a heart attack on November 5, 1960 and died shortly after. What were his Biorhythms like around this time?

Biorhythms indicate that we are at our peak when all three curves are at their maximum. How often could we expect to experience this in our lifetimes? 10, 50 or 100 times or more? Modify your code to determine this.

Discuss your own ideas with your lecturer or tutor.

A report is to be submitted in this assignment. There is a discussion section in the report in which you can apply step 6 in the six-step problem solving process and ask the four questions often used in evaluating a solution.

There are three important parts

1. General Guide to Writing and Study Skills
This section describes the content of a report - refer to page 34 - Abstract, Table of Contents, Introduction, Conclusion and so on.

2. General Guide to Referencing
APA referencing style is described in this section - EndNote is also available to students

3. Assignment Layout and Appearance Guidelines

This section describes how the report should appear: margin sizes, fonts, how diagrams and tables are presented and so on.

Reference no: EM132377856

Questions Cloud

Create a satisfying patient experience : Imagine that you are a staff nurse in a community care center. Your facility has always had a dedicated case management staff that coordinated the patient plan.
Explain in detail the two types of ethical violations : Define and explain in detail the following two types of ethical violations: 1) Political Activity and 2) Post-Employment. Give three examples of each type.
Identify cybersecurity risks and threat agents : Identify cybersecurity risks and threat agents that apply particularly to information systems in government organizations. How is classified information.
What trade theories support the recent rise of china : What trade theories support the recent rise of China and India on the global stage? How?
ITECH1400 Foundations of Programming - Biorhythms Assignment : ITECH1400 Foundations of Programming - Biorhythms Theory and Practice Assignment help and solution, Federation University - use correct syntax of programming
UGB165 Introduction To Business Operations And Services : UGB165 Introduction To Business Operations And Services Assignment Help and Solution, University of Sunderland, UK. Task: A Golden Opportunity for Ford and GM
Identify three concepts of intercultural communication : Identify three concepts of Intercultural communication that you can see displayed in the Movie, Insha'Allah Dimanch. Explain these concepts in your own words.
How can i describe what scripture is in religion : How can I describe what scripture is in religion? What does it mean?
Discussion about the legislative action : As you select a topic for your paper, be able to provide a case/defense answering the question: In the historical context when this topic/legislative.

Reviews

len2377856

9/27/2019 11:23:29 PM

Report1 /10 TOTAL /100 FINAL MARK /20

len2377856

9/27/2019 11:23:23 PM

Graphical Display Annotation of the curves with day and date using the algorithm provided or suitable algorithm – description of the algorithm in your own words. Do not use library function. /10 Demonstration that correct day/date annotation is implemented in code /10 Practical application of your Biorhythm code. Discuss you individual approach with your lecturer/tutor. /10 Discussion /15

len2377856

9/27/2019 11:23:15 PM

Marking Criteria/Rubric Biorhythms Item Mark Basic Description of Biorhythms – in your own words - significant parts of the three curves including their relationship to one another /10 Description of Biorhythms as sine and cosine curves – including the importance of phase and amplitude e.g. critical days /10 Pseudocode for the calculation of Biorhythms /15 Graphical display with significant parts of the curves labelled /10

Write a Review

Python Programming Questions & Answers

  Write a python class definition for class sumi

Write a python class definition for class ‘Sumi' with a single instance variable self.num of type ‘int' and single instance method called "sum_of_digits".

  Convert hexadecimal 4c to decimal

Your first objective in this lesson is to understand binary numbers and hexadecimal numbers. Then, you must learn how to quickly and accurately convert between decimal numbers, binary numbers

  Write a function that output the position of minimum element

Position of minimum elemement. Write a function that outputs the position of the minimum element in an array of integers.

  Write a function that accepts as an argument

Determine an athletes final score for the event, the highest and lowest judges' scores are discarded and then the average of the rest of the scores

  Craete a program that simulates a traffic light

Write a program that simulates a traffic light. The program lets the user select one of three lights: red, yellow, or green.

  Write a progra m that creates two objects

Write a progra m that creates two objects, object of the ProductionWorker class and an object of ShiftSupervisor r class.

  Add a list to keep track of all the numbers guessed

Add a list to keep track of all the numbers guessed and modularize your code. Be sure to import random at the beginning of your code.

  Implements the binary tree as a class

Implements the binary tree above as a class. Divides into tokens, generating an iterator, with added support for variable names. Evaluates a postfix expression, given an iterator, with added support for variables.

  Determine how many months it will take topay of credit card

Write a program that will help you determine how many months it will take topay of a credit card balance. It should show and should ask the user to enter.

  Write a complete python program that prints a pyramid

Write a complete Python program that prints a pyramid with upside down triangle as shown. The program should be made of at least four functions without return.

  Create a new file in your repository

Create four functions, sequential search, ordered sequential search, binary search_iterative and binary search_recursive, and use the code from the section

  Revise function compare_files to accomplish the work describ

Revise function "build_word_index" to accomplish the specified work. Revise function "compare_files" to accomplish the work described in the comments. Test the revised program using the sample documents.

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