Answered step by step
Verified Expert Solution
Link Copied!
Question
1 Approved Answer

Numerical analysis Lab 3 Required: 1. Include comments in your code giving your name, the date, and a code description 2. Also include comments in

image text in transcribed

Numerical analysis Lab 3

Required: 1. Include comments in your code giving your name, the date, and a code description 2. Also include comments in your Output.doc/x that give the corresponding problem number. 3. Whenever printing a value to the screen, also print a statement defining the value and any units. Example: Do "the distance x is 23 meters"; Don't "23" Problem 1 40 Factorial is the product of an integer and all the integers below it: r! - (x) *(x-1) * (x-2)21-i Write both C and Matlab scripts that accept inputs for the value of r and then prints the value of x!. Note that 0! = 1. First solve this problem using a for or while loop. Then solve it using recursion. These methods may be included in a single script. Print both outputs Problem 2 50 The trigonometric functions sin and cos can be approximated using power series expansions These expansions are accurate over a limited range with increasing error as the input moves away from zero. The series for cosine is: cos(a) 1- (-1)i r2i (2i)! Write both C and Matlab scripts that accept inputs for the value of x and the number of terms in the series and then prints the value of cos(). You may use one of your factorial methods generated in the problem above. Note that 13! produces a value beyond INT MAX First solve this problem using a for or while loop. Then solve it using recursion. These methods may be included in a single script. Print both outputs

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image
Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Machine Performance Modeling Methodologies And Evaluation Strategies Lncs 257

Authors: Francesca Cesarini ,Silvio Salza

1st Edition

3540179429, 978-3540179429

More Books

Students explore these related Databases questions