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

  How many humans and horses are there

One day, a person went to horse racing area, Instead of counting the number of human and horses, he instead counted 74 heads and 196 legs. Yet he knew the number of humans and horses there. How did he do it, and how many humans and horses are ther..

  What resistance r gives the maximum power

A de-generator with an internal resistance r develops V volts. If the variable resistance in the circuit is R, the power generated is P=V^2/(R+r). What resistance R gives the maximum Power?

  What is the proof of pythagoras theorem

What is the proof of Pythagoras Theorem ?

  Express the hydrostatic force against one side of the plate

A triangle with base 3 m and height 5 m is submerged vertically in water so that the tip is even with the surface. Express the hydrostatic force against one side of the plate as an integral and evaluate it.

  Use a minimum number of 2:4 decoders

Use a minimum number of 2:4 decoders and a minimum number of other gates to output a 1 for any prime number less than 16.

  Square determination

A checkered flag used for racing is a square flag containing 64 alternating white and black squares. How many squares on the checkered flag contain an equal number of white and black squares?

  Annual sales revenue has grown rapidly from 25 million to

rent-a-car inc. provides daily auto rental services to individuals while their own cars are being repaired. annual

  What is the sample mean

What is the sample mean?

  Estimate the total amount of the drug present

A patient receives 3 milligrams of a certain drug each day. Each day the body eliminates 20% of the amount of drug present in the system. Estimate the total amount of the drug present after extended treatment, immediately after a dose is given.

  How many credits should multi variable be towards a bachelor

How many credits should multi variable be towards a bachelor degree?

  What is the intersection of sets x and y

Create your own set Z that is a proper subset of Set X.

  Find the ratio of the radius of the circle to the height

Find the ratio of the radius of the circle to the height of the rectangle so that the area of the window is a maximum.

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