Calculate the corresponding numbers in fahrenheit

Assignment Help Mathematics
Reference no: EM131088924

Exercise 1

1. Arithmetic operations:

a) 3^6/(3^6 - 1) compare with (1 - 1/3^6 )^-1
b) 2 √7 - 2 (√7 + 2)2 - 1
c) Area = πr2 with radius r = π^1/3 - 1

2. Exponential and logarithms:

a) e^3 , ln e^3 , log10 e^3 , log10(10^5)
b) e^π√163
c) solve 3^x = 17 for x and check the result (soluton x = ln 17 / ln 3 , check by substitution)

3. Trigonometry:

a) sin π/6 , cos π , tan π/2
b) sin^2 π/6 + cos^2 π/6
c) y = cosh^2 x - sinh^2 x for x = 32π

4. Complex numbers:

a) (3 + 2i)/( 3 - 2i) , check the result by hand calculation
b) e^i/π5 , check the Euler-formula eix = cos x + isin x by computing both sides of the equation
c) execute the commands exp(pi/2*i) and exp(pi/2i) explain the difference

Exercise 2

1. Equation of straight line:

Compute the y-coordinate of the straight line
y = mx + c
with slope m = 0.5 and the intercept c = -2 at the following x-coordinates
x = 0, 1.5, 3, 4, 5, 7

2. Multiply, divide, and exponentiate vectors:

Create a vector t with 10 elemts: 1, 2, 3, . . . , 10 and compute the following quantities:

x = tsin(t), y = (t - 1)/( t + 4) , z = sin(t^2)/t^2

3. Points on a circle:

All points with coordinates:

x = r cos θ , y = r sin θ , r = const

lie on a circle with radius r, i.e., they satisfy the equation
x^2 + y^2 = r^2

a) Create a column vector for θ with the elements

 

0, π/4, π/2, 3π/4, π, 5π/4

b) Take r = 2 and compute the column vectors x and y.

c) Check that x and y satisfy the equation of circle, by computing the radius

r = (x^2 + y^2)^1/2

4. Matrices and vectors::

a) Create a vector and a matrix with the following commands:

v=0:0.2:12;

M=[sin(v); cos(v)];

b) Find the size of v and M.

c) Extract the first 10 elenents of each row of the matrix, and display them as column vectors.

Exercise 3.

1. On-line help:
Type help function to get on-line help on function. Read through the help file.

2. Convert temperature:
Write a function that outputs a conversion-table for Celsius and Fahrenheit temperatures. The input of the function should be two numbers: Ti and Tf, specifying the lower and upper range of the table in Celsius. The output should be a two column matrix: the first column showing the temperature in Celsius from Ti to Tf in the increments of 1oC and the second column showing the corresponding temperatures in Fahrenheit.

a) create a column vector C from Ti to Tf

b) calculate the corresponding numbers in Fahrenheit: F= 9/5C + 32

c) make a final matrix temp=[C F]

3. Calculate factorials:

Write a function factorial to compute the factorial n! for an y integer n.The input should be the number n and the output n!. You might have to use a for loop or a while loop to do the calculation. (You can use the built-in function prod to calculate factorials. For example n!=prod(1:n). In this exercise use this function only for control.)

4. Compute the cross product:

Write a function file crossprod to compute the cross product of two vectors u, and v, given u = [u1, u2, u3], v = [v1, v2, v3], and u × v = [u2v3-u3v2, u3v1-u1v3, u1v2 -u2v1]. Check your function by taking cross products of pairs of unit vectors: (i,j), (i, k), etc. i = [1, 0, 0], j = [0, 1, 0], k = [0, 0, 1]. (Do not use the built-in function cross here.)

5. Sum

a geometric series: Write a function to compute the sum of the geometric series
1 + r + r2 + r3 + . . . + rn

for a given r and n. Thus the input to the function must be r and n and the output must be the sum of the series.

Exercise 4.

1. A simple sine plot:

Plot y = sin x, 0 ≤ x ≤ 2π, taking 100 linearly spaced points in the given intervall. Label the axis and put "Plot created by yourname" in the title.

2. Line-styles:

Make the same plot as before, but rather than displaying the graph as a curve, show the unconnected data points. Display the data points by small circles. Now combine the two plots in one command, to show the line through the data points as well as the distinct data points.

3. An exponentially decaying sine plot:
Plot y= e-0.4x sinx, 0 ≤x≤ 4π, taking 10, 50, and 100 points in the interval.

4. Space curves:

Use the command plot3(x,y,z) to plot the circular helix
x(t) = sin t,
y(t) = cost, z(t) = t, 0 ≤ x ≤ 20.

5. On-line-help:

Type help plot on the Matlab promt and hit return. If too much text flashes by the screen, type more on, hit return, and then type help plot again. This should give you paged output. Read through the on-line help. To move the next page of the screen output, simply press the space bar.

6. Log scale plots:

Create a vector x = 0 : 10 : 1000.
Plot x vs.x3 using the three log scale plot commands. Hint: First, compute y = x3 and then, use semilogx(x,y) etc.

7. Overlay plots:

Plot y = cos x and z = 1 - 1/2x^2 + 1/24x^4 for 0 ≤x≤π on the same plot.
Hint: You can use i) plot(x,y,x,z,':'), ii) hold on command after the first plot command . . . , iii) line(x,y,'...') after the first plot command . . .
Try the command legend('cos(x)','z').

Reference no: EM131088924

Questions Cloud

Interstate and intrastate-revenue requirement : Why are interstate and intrastate telecommunications regulated by different agencies?
Write a program that uses the interrupt-driven approach : Period measurement. Use the input-capture channel 0 to measure the period of an unknown signal. The period is known to be shorter than 128 ms. Assume that the E-clock frequency is 24 MHz. Use the number of clock cycles as the unit of the period.
An illustration from the roanoke times online : Using the information in Scenario 1, News Lead-writing Exercise1, write a summary news lead. Your lead may be no longer than 20 words and must be written in the active voice.
Lexical structures of programming languages : Describe the three basic patterns of characters in regular expressions of Lexical Structures of Programming Languages?
Calculate the corresponding numbers in fahrenheit : Write a function factorial to compute the factorial n! for an y integer n.The input should be the number n and the output n!. You might have to use a for loop or a while loop to do the calculation. (You can use the built-in function prod to calcul..
How expectations of future budget deficits affect currency : Show algebraically how expectations of future budget deficits might affect the current value of a currency. Explain the intuition of your result
The impact of photodetectors on chromatic dispersion : Design and analyze the impact of photo detectors on chromatic dispersion with rz and nrz line encoded radio over fibre link having amplitude modulated suppressed carrier rf signal.
Write a program to read the temperature once every 200 ms : Change the ambient temperature using your hand, hot water in a plastic bag, ice in a plastic bag, and so on, to touch the TC72 and record the temperature reading.
Higher education-joining the conversation : In this class, we will learn to think of scholarly research and argument as a way of "joining a conversation" on an issue.Summary and response are the first steps in joining the conversation.

Reviews

Write a Review

Mathematics Questions & Answers

  What percent of iq score

IQ scores are normally distributed with a mean of100 and standard deviation of15. what percent of IQ score are within 9 points either above or below the mean?

  How many truck loads will be required to remove the dirt

A rectangular trench is to be dug which is to be 180 ft long, 90 ft wide and 8 ft deep. A large dump truck can carry 20 cubic yards in a load. How many truck loads will be required to remove the dirt from this trench?

  Identify the material

A 500g sample of an unknown material requires 750 calories of heat to raise its temperature by 50 degrees C. Use equation (1) and table 6.1 to identify the material.

  For the given function f

For the given function f

  Calculate the total amount payable by the family

The service tax charged by Restaurant ABC is 9%. A family paid RM81 for the service tax. Calculate the total amount payable by the family - Find the domain and range of the functions, explain briefly and sketch the graph.

  Find the force that the floor exerts

To strengthen his arm and chest muscles, an 83.0 kg athlete 2.00 m tall is doing a series of push-ups as shown in the figure below (Figure 1) . His center of mass is 1.10 m from the bottom of his feet, and the centers of his palms are 30.0 cm from th..

  What can you conclude about the affect of the rate

Show your results numerically and graphically. What can you conclude about the affect of the rate of return on your retirement plans ?

  What is the mean value of the one trial of this game

What is the mean value of the one trial of this game?

  What are the initial conditions

Given that S_n denotes the number of n-bit strings that do not contain the pattern 00, what are the initial conditions?

  State what year will the attendance be less

The number attending is 2/3 of the previous year's attendance, in what year will the attendance be less than 1/3 the original attendance

  The probability that at least one of the bonds defaults

What is the probability that at least one of the bonds defaults?

  What is the acceleration of the particle

What is the acceleration of the particle in the direction of the tangent vector to the curve (i.e. what is the tangential component of acceleration, aT) whenever t=2?

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