answersLogoWhite

0

#include<iostream>

#include<cmath>

#include<fstream>

using namespace std;

double f(double x);

int main()

{

double dX0, dX1, dX2, dInterations = 0, dTolerance;

cout << "What is the first root guess? ";

cin >> dX0;

cout << "What is the second root guess";

cin >> dX1;

do {

dX2 = dX1 - ((f(dX1) * (dX1 -dX0)) / (f(dX1) - f(dX0)));

dX0 = dX1;

dX1 = dX2;

dTolerance = fabs(dX2 - dX1);

dInterations++;

}

while (dInterations <= 100 dTolerance >= .000001);

cout << "One of the roots is " << dX2 << endl;

}

double f(double x)

{

double dReturn;

dReturn = (3 * x * x) + (2 * x) -2;

return dReturn;

}

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How to write program for secant method in mathematica?

How to write a program for secant method by mathematica


What is an secant in math?

Secant is a trignometric function. In a right triangle, the secant of an angle is the hypotenuse over the adjacent side. It is also the inverse of cosine. For example secant(x) = 1/cos(x)


Code for Secant method please in visual basic 2008?

855193


Is the diameter an example of an secant?

I am almost positive that it isn't because a secant is an extended chord so it goes out of circle. So no it is not.


what is Secant used for?

Secant is primarily used in mathematics and engineering, particularly in the context of trigonometry and calculus. It represents the reciprocal of the cosine function and is used to solve problems related to angles, triangles, and periodic functions. Additionally, the secant method is a numerical technique for finding roots of functions, leveraging secant lines to approximate solutions iteratively.


How do you find sec on TI-83 Plus?

There isn't a sec key on the TI-83 Plus. Secant is 1/cosine, which is what is used to find secant on a TI-83 Plus. For example, to find the secant of 4, enter 1/sec(4).


What are the values of theta of which secant theta is undefined?

Since secant theta is the same as 1 / cosine theta, the answer is any values for which cosine theta is zero, for example, pi/2.


Does trignometry secant relate to circles secant?

yes


How do you spell secant?

That is the correct spelling of the geometric term "secant."


Is a secant-secant angle is a central angle of a circle?

Sometimes


What is a secant of a circle?

a secant is a line containing a chord. A secant is a line that intersects the circle twice(or passes through a circle)


Where is the tangent secant angle on a circle?

The tangent secant angle is the angle between the tangent to a circle and the secant, when the latter is extended.