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
posledela
4 years ago
12

Use Newton's method to determine the angle θ, between 0 and π/2 accurate to six decimal places. for which sin(θ) = 0.1. Show you

r work until you start computing x1, etc. Then just write down what your calculator gives you.
Engineering
1 answer:
kirza4 [7]4 years ago
3 0

Answer:

x3=0.100167

Explanation:

Let's find the answer.

Because we are going to find the solution for sin(Ф)=0.1 then:

f(x)=sin(Ф)-0.1 and:

f'(x)=cos(Ф)

Because 0<Ф<π/2 let's start with an initial guess of 0.001 (x0), so:

x1=x0-f(x0)/f'(0)

x1=0.001-(sin(0.001)-0.1)/cos(0.001)

x1= 0.100000

x2=0.100000-(sin(0.100000)-0.1)/cos(0.100000)

x2=0.100167

x3=0.100167

You might be interested in
Can the United States defeat Iranian forces
Lostsunrise [7]

Answer:

yes for sure

Explanation:

iran oy has 3000 ballistic missiles but america has thousands of nukes. we can easily outnumber their forces as well. this will be a easy victory for us but will result in massive casualties on both sides

5 0
3 years ago
Read 2 more answers
8- Concentration polarization occurs on the surface of the.......
Rainbow [258]

Explanation:

Concentration overpotential, ηc,

I hope it helps you

5 0
3 years ago
How can I find the quotient of 27 divided 91.8
gayaneshka [121]
Step 1:
Start by setting it up with the divisor 8 on the left side and the dividend 27 on the right side like this:

8 ⟌ 2 7

Step 2:
The divisor (8) goes into the first digit of the dividend (2), 0 time(s). Therefore, put 0 on top:

0
8 ⟌ 2 7

Step 3:
Multiply the divisor by the result in the previous step (8 x 0 = 0) and write that answer below the dividend.

0
8 ⟌ 2 7
0

Step 4:
Subtract the result in the previous step from the first digit of the dividend (2 - 0 = 2) and write the answer below.

0
8 ⟌ 2 7
- 0
2

Step 5:
Move down the 2nd digit of the dividend (7) like this:

0
8 ⟌ 2 7
- 0
2 7

Step 6:
The divisor (8) goes into the bottom number (27), 3 time(s). Therefore, put 3 on top:

0 3
8 ⟌ 2 7
- 0
2 7

Step 7:
Multiply the divisor by the result in the previous step (8 x 3 = 24) and write that answer at the bottom:

0 3
8 ⟌ 2 7
- 0
2 7
2 4

Step 8:
Subtract the result in the previous step from the number written above it. (27 - 24 = 3) and write the answer at the bottom.

0 3
8 ⟌ 2 7
- 0
2 7
- 2 4
3

You are done, because there are no more digits to move down from the dividend.

The answer is the top number and the remainder is the bottom number.

Therefore, the answer to 27 divided by 8 calculated using Long Division is:

3
8 0
3 years ago
Not sure which one....
Airida [17]
I think downwards as that's how most saw's work.
4 0
3 years ago
1 // Lab 2 tryIt2A 2 #include 3 using namespace std; 4 5 int main() 6 { int x = 1, y = 3; 7 int X = 2, Y = 4; 8 9 cout &lt;&lt;
padilas [110]

Answer:

Here is the complete program:

#include <iostream>

 using namespace std;    

 int main()

 {  int x = 1, y = 3;  

 int X = 2, Y = 4;  

 cout << "tryIt 2A" <<endl;

   cout << x << y << endl;  

   cout << "x" << "y" << endl;  

   cout << X << " " << Y << endl;

   cout << 2 * x + y << endl;  

   cout << 2 * X + Y << endl;  

   //cout << x + 2*y << endl;  

   cout << "x = ";  

   cout << x;  

   cout << " y = ";  

   cout << y;        

   return 0;

   }

Explanation:

I will explain the code line by line in the comment with each line of code and the output of each cout statement.

  • int x = 1, y = 3;  

This statement assigns value 1 to integer variable x and 3 to int variable y

  • int X = 2, Y = 4;  

This statement assigns value 2 to integer variable X and 4 to int variable Y As C++ is a case sensitive language so variable x and y are different from variables X and Y.

  • cout << "tryIt 2A" <<endl;

This statement has cout which is used to display output on the screen. So the output displayed by this cout statement is:

tryIt2A

  • cout << x << y << endl;  

This statement will print the values stored in x and y variables. So output displayed by cout statement here is 1 and 3. As there is not space or next line specified in the statement so output displayed will look like this:

13

  • cout << "x" << "y" << endl;  

This statement will display x and y but these are not the variable x and y. They are enclosed in double quotation marks so they are treated as strings not variables so the output displayed is:

xy

  • cout << X << " " << Y << endl;

This statement will print the values stored in X and Y variables. So output displayed by cout statement here is 2 and 4. As there is  space " " specified in the statement so 2 and 4 are displayed with a space between them so the output displayed will look like this:

2 4

  • cout << 2 * x + y << endl;  

This statement has an arithmetic operation in which 2 is multiplied by the values stored in variable x and then the result is added by value of y. So  2*1 = 2 and 2 + 3 = 5. So the result produced by this cout statement is:

5

  • cout << 2 * X + Y << endl;  

This will work same as above cout statement but the only difference is that the values of capital X and Y variables are calculated here. So 2 * 2 = 4 and then 4 + 4 = 8. The result produced by this cout statement is:

8

  • //cout << x + 2*y << endl;  

This is a comment because before this statement // is written which is used for single line comment. So compiler ignores comments and will not compile this statement.

  •    cout << "x = ";  

This will display "x = " as it is not variable but it is treated as a line to be displayed on the screen. So cout statement displays:

x =

  • cout << x;

This will print the value stored in x variable as there are no double quotes around x so it is a variable which contains value 1. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1

  • cout << " y = ";

This will display "y = " as it is not variable but it is treated as a line to be displayed on the screen. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen

x = 1 y =

  • cout << y;    

This will print the value stored in y variable as there are no double quotes around y so it is a variable which contains value 3. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1 y = 3

So the output of the entire program along with the program is attached as screenshot.

6 0
4 years ago
Other questions:
  • A vacuum gauge indicates that the pressure of air in a closed chamber is 02 bar ( vacuum) The pressure of the surrounding atmosp
    10·1 answer
  • Consider the circuit below where R1 = R4 = 5 Ohms, R2 = R3 = 10 Ohms, Vs1 = 9V, and Vs2 = 6V. Use superposition to solve for the
    15·1 answer
  • Three 12-V, 100-A-hr batteries are connected in series. What are the output voltage and A-hr capacity of this connection
    9·1 answer
  • A reversible compression of 1 mol of an ideal gas in a piston/cylinder device results in a pressure increase from 1 bar to P2 an
    10·1 answer
  • "Compute the flow time, tardiness, and lateness for each job, and the average flow time, average tardiness, and average lateness
    10·1 answer
  • Estimate the theoretical fracture strength of a brittle material if it is known that fracture occurs by the propagation of an el
    8·1 answer
  • How do you extablish a chain of dimensions​
    15·1 answer
  • Does anyone know how to fixes rope lights? Half of the rope is not on<br><br>Someone.. Anyone..
    9·1 answer
  • Two long pipes convey water between two reservoirs whose water surfaces are at different elevations. One pipe has a diameter twi
    13·1 answer
  • What is the first thing to do when you make a three-point turn?.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!