1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
olya-2409 [2.1K]
3 years ago
10

3. Given the Taylor series expansion for sin x = x − x3/ 3! + x5/5! − x7/7! . Write a program that takes in an arbitrary integer

for an angle in degrees, converted the degrees to radians and performs the calculation above. Remember you will need a loop to calculate the ! term and float variables to hold the term(s) in the expansion and the converted degrees to radian.
Engineering
1 answer:
katen-ka-za [31]3 years ago
8 0

Answer:

clc

clear

x = input('type value of angle in degrees:\n');

x = x*pi/180; %convverting fron degree to radian

sin_x = x; %as first term of taylor series is x

E = 1; %just giving a value of error greater than desired error

n = 0;

while E > 0.000001

previous = sin_x;

n = n+1;

sin_x = sin_x + ((-1)^n)*(x^(2*n+1))/factorial(2*n+1);

E = abs(sin_x - previous); %calculating error

end

a = sprintf('sin(x) = %1.6f',sin_x);

disp(a)

Explanation:

You might be interested in
The air velocity in the duct of a heating system is to be measured by a Pitot-static probe inserted into the duct parallel to th
Ilia_Sergeevich [38]

Answer:

Flow velocity

50.48m/s

Pressure change at probe tip

1236.06Pa

Explanation:

Question is incomplete

The air velocity in the duct of a heating system is to be measured by a Pitot-static probe inserted into the duct parallel to the flow. If the differential height between the water columns connected to the two outlets of the probe is 0.126m, determine (a) the flow velocity and (b) the pressure rise at the tip of the probe. The air temperature and pressure in the duct are 352k and 98 kPa, respectively

solution

In this question, we are asked to calculate the flow velocity and the pressure rise at the tip of probe

please check attachment for complete solution and step by step explanation

8 0
3 years ago
Discuss importance of good communication system​
meriva

Answer:

Effective communication helps decision makers by gathering and providing the information to the right person on right time. Communication performs as a motivator to the employees by notifying the employees about the job task, process of carrying and how it could be done better.

7 0
2 years ago
Find the resolving power of a Fabry-Perot interferometer in which two silver coated plates have reflectance of ???? = 0.9, if th
pochemuha

Answer:

Resolving Power=625000

Explanation:

See attached picture.

7 0
3 years ago
La iluminación de la superficie de un patio amplio es 1600 lx cuando el ángulo de elevación del sol 53°. Calcular la iluminación
gregori [183]

Answer:

 I = 1205.69 Lx

Explanation:

The irradiation or intensity of the solar radiation on the earth is maximum for the vertical fire, with a value I₀

          I = I₀ sin θ

in this case with the initial data we can calculate the initial irradiance

         I₀ = \frac{I}{sin  \ \theta }

         I₀ = 1600 /sin 53

         I₀ = 2003.42 lx

for when the angle is θ = 37º

         I = 2003.42 sin 37

         I = 1205.69 Lx

6 0
3 years ago
In the engineering design and prototyping process, what is the advantage of drawings and symbols over written descriptions?
MrMuchimi

The advantages that can be associated to

drawings and symbols over written descriptions in engineering design and prototyping process are;

Communicate design ideas as well as technical information to engineers.

Symbols and drawings can be universal which means it is easy to interpret any where by professionals.

  • An engineering drawing serves as complex dimensional object and symbol use by engineer to communicate.

  • Drawings and symbols makes it easier to communicate design ideas and technical information to engineers and and how the process will go.

Therefore, drawings and symbols is universal to all engineer unlike written one.

Learn more at:

brainly.com/question/20925313?referrer=searchResults

4 0
2 years ago
Other questions:
  • Calculate the impedance of a 20 mH inductor at a frequency of 100 radians/s. Calculate the impedance of a 500 µF inductor at a f
    9·2 answers
  • Given the unity feedback system
    5·1 answer
  • A frustum of cone is filled with ice cream such that the portion above the cone is a hemisphere. Define the variables di=1.25 in
    9·1 answer
  • Suppose an underground storage tank has been leaking for many years, contaminating a groundwater and causing a contaminant conce
    8·1 answer
  • 4. The friction point is the point
    12·1 answer
  • The Review_c object has a lookup relationship up to the Job_Application_c object. The job_Application_c object has a master-deta
    7·1 answer
  • A long bone is subjected to a torsion test. Assume that the inner diameter is 0.375 in. and the outer diameter is 1.25 in., both
    14·1 answer
  • potential difference is the work done in moving a unit positive charge from one point to another in an electric field. State Tru
    12·1 answer
  • Air enters a compressor operating at steady state at 1.05 bar, 300 K, with a volumetric flow rate of 21 m3/min and exits at 12 b
    11·1 answer
  • The complete stress distribution obtained by superposing the stresses produced by an axial force and a bending moment is correct
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!