1 Starting With Matlab 2 Creating Arrays 3 Mathematical Operations With Arrays 4 Using Script Files And Managing Data 5 Two-dimensional Plots 6 Programming In Matlab 7 User-defined Functions And Function Files 8 Polynomials, Curve Fitting, And Interpolation 9 Applications In Numerical Analysis 10 Three-dimensional Plots 11 Symbolic Math Chapter1: Starting With Matlab
Chapter Questions Section: Chapter Questions
Problem 1P Problem 2P: Calculate: (a) 8+802.6+e3.53 (b) 175)+733.131/4+550.41 Problem 3P: Calculate: (a) 23+453160.7+log10589006 (b) (36.12.25)(e2.3+20) Problem 4P: Calculate: (a) 3.822.754125+5.2+1.853.5 (b) 2.110615.21053610113 Problem 5P: Calculate: (a)sin0.2cos/6+tan72 (b) (tan64cos15)+sin237cos220 Problem 6P: Define the varialbe z as z = 4.5; than evaluate: (a) 0.44+3.1z2162.3z80.7 (b) z323/z2+17.53 Problem 7P: Define the variable t as t= 3.2; then evalute: (a) 12e2t3.81t3 (b) 6t2+6t2t21 Problem 8P: Define the variable xandy as x = 6.5 and y = 3.8; then evaluate: (a) x2+y22/3+xyyx (b) x+yxy2+2x2xy2 Problem 9P: Define the variables a, b, c, and d as: c= 4.6, d = 1.7, a = cd2, and b=c+acd; then evaluate: (a)... Problem 10P: Two trigonometric identities are given by: (a) cos2xsin2x=12sin2x (b) tanxsinx2tanx=1cosx2 For each... Problem 11P: Two trigonometric identities are given by: (a) sinx+cosx2=1+2sinxcosx (b)... Problem 12P: Define two variables: alpha =8, and beta = 6. Using these variables, show that the following... Problem 13P: Given: x2cosxdx=2xcosx+x22sinx . Use MATLAB to calculaet the following difinite integral:... Problem 14P: A rectangular box has the dimensions shown. (a) Determine the angle BAC to the nearest degree. (b)... Problem 15P: The are length of a segment of a parabola ABC is given by: LABC=a2+4h2+2ha+2ha2+1 Determine LABC if... Problem 16P: The three shown circles, with radius 15 in., 10.5 in., and 4.5 in., are tangent to each other. (a)... Problem 17P: A frustum of cone is filled with ice cream such that the portion above the cone is a hemisphere.... Problem 18P: 18. In the triangle shown a =27 in., b 43 in., c=57 in. Define a, b, and c as variables, and then:... Problem 19P: For the triangle shown, a = 72°, ß=43°, and its perimeter is p = 114 mm. Define a, ß, and p, as... Problem 20P: The distance d from a point P (xp,yp,zp) to the line that passes through the two points A (xA,yA,zA)... Problem 21P: The perimeter of an ellipse can be approximated by: P=(a+b)3(3a+b)(a+3b)a+b Calculate the perimeter... Problem 22P: A total of 4217 eggs have w be packed in boxes that can hold 36 eggs each. By typing one line... Problem 23P: A total of 777 people have to be transported using buses that have 46 seats and vans that have 12... Problem 24P: Change the display to format long g. Assign the number 7E8/13 to a variable, and then use the... Problem 25P: The voltage difference Vabbetween points a and b in the Wheatstone bride circuit is given by:... Problem 26P: The current in a series RCL circuit is given by: I=VR2(L1C)2 Where =2 f. Calculate I for the... Problem 27P: The monthly payment M of a mortgage P for n years with a fixed annual interest rate r can be... Problem 28P: The number of permutations nProf taking r Objects out of n objects without repetition is given by:... Problem 29P: The number of combinations Cn,r of taking r objects out of n objects is given by: aye In the... Problem 30P: The equivalent resistance of two resistors R1and R2connected in parallel is given by Req=R1R2R1+R2 .... Problem 31P: The output voltage Voutin the circuit shown is given by (Millman’s theorem):... Problem 32P: Radioactive decay of carbon-14 is used for estimating the age of organic material. The decay is... Problem 33P: The greatest common divisor is the largest positive integer that divides the numbers without a... Problem 34P: The amount of energy E (in joules) that is released by an earthquake is given by: E=1.741019101.44M... Problem 35P: According to the Doppler effect of light, the perceived wavelength ?p, of a light source with a... Problem 36P: Newton’s law of cooling gives the temperature T(t) of an object at time tin terms of T0, its... Problem 37P: The velocity v and the falling distance d as a function of time of a skydiver that experience the... Problem 38P: Use the Help Window to find a display format that displays the output as a ratio of integers. For... Problem 39P: Gosper’s approximation for factorials is given by: n!=2n+13nnen Use the formula for calculating 19!.... Problem 40P: According to Newton’s law of universal gravitation, the attraction force between two bodies is given... Problem 1P
Related questions
There are two Gaussian curves below (Plots A and B), along with the respective R source codes. Looking at the plots and the source codes provided, identify the parameters of respective Gaussian pdf 's (probability density functions ) and the numeric value of x in the PDF F(x) express the areas under the curves in terms of F(x). ( Do not calculate those areas.Your answers must be like F(x) or 1- F(x) for a relevant value of x.)
Below is the source code and image for part B
Transcribed Image Text: **Normal Distribution with Highlighted Area**
This graph represents a normal distribution curve, also known as a bell curve, which is a common way to represent data in statistics. The x-axis is labeled as "x" and ranges from -4 to 8. The y-axis is labeled as "y" and ranges from 0.00 to 0.20.
### Key Features:
- **Curve Shape**: The curve peaks at the center and tapers off symmetrically on both sides, illustrating the probability density function of a normal distribution.
- **Highlighted Area**: A portion of the graph is shaded in light green from the left side (around x = -4) to approximately x = 1.5. This shaded region represents the probability or proportion of data falling between these x-values.
### Educational Insights:
- The highest point of the curve represents the mean of the data.
- The shaded area could be used to show the probability of a random variable falling within a certain range, often used to calculate z-scores or critical values.
- Understanding how to interpret this graph is essential in fields like statistics, research, and data analysis.
This visual tool is valuable for those studying statistical methods and probability theory.
Transcribed Image Text: **PLOT-B Explanation**
The text shows an R script used for plotting a statistical function:
1. **Define the Sequence for x-values:**
```R
x <- seq(-4, 8, 0.01)
```
- This line creates a sequence from -4 to 8 with increments of 0.01, storing it in `x`.
2. **Calculate the y-values Using the Normal Distribution:**
```R
y <- dnorm(x, 2.2, 1.9)
```
- This line calculates the density of the normal distribution for each value in `x` with a mean of 2.2 and a standard deviation of 1.9, storing it in `y`.
3. **Plot the Graph:**
```R
plot(x, y, type = "l")
```
- This line plots the `x` and `y` values, producing a line graph (indicated by `type = "l"`).
4. **Highlight an Area Under the Curve:**
```R
polygon(c(x[x < 1], 1), c(y[x < 1], y[x == -4]), col = "honeydew2")
```
- This line draws a polygon to highlight the area under the curve where `x` is less than 1. The color of the highlighted area is "honeydew2".
**Graph Explanation:**
- The graph represents a normal distribution curve with specific parameters.
- It highlights the area under the curve from where `x` starts at -4, up to `x = 1`, with the specified color "honeydew2". This can be useful for statistical analysis or probability calculations.
Expression, rule, or law that gives the relationship between an independent variable and dependent variable. Some important types of functions are injective function, surjective function, polynomial function, and inverse function.
Expert Solution
From the above code,
x<seq(-4,8,0.01)
We see that the limits of x are -4 to 8. That means, -4<x<8
y<dnorm(x,2.2,1.9)
We know that,
y<dnorm(x,mean,standard deviation)
So , mean = 2.2 and standard deviation = 1.9
Step by step
Solved in 2 steps