Giter Club home page Giter Club logo

bisection-method's Introduction

Bisection-Method

Here, Code of Bisection Method of Computer Oriented Numerical Methods in Java Language.The bisection method is an approximation method to find the roots of the given equation by repeatedly dividing the interval. This method will divide the interval until the resulting interval is found, which is extremely small.

Project title

Bisection Method

Motivation

A University Assignment. Clearly Used to Solve anhy Porblem and Perform Computer Oriented Prolblems .

Method and results

start

  1. Define function f(x)

  2. Choose initial guesses a and b such that f(a)f(b) < 0

  3. Choose pre-specified tolerable error e.

  4. Calculate new approximated root as m = (a + b)/2

  5. Calculate f(a)f(m) a. if f(a)f(m) < 0 then x0 = x0 and x1 = x2 b. if f(a)f(m) > 0 then x0 = x2 and x1 = x1 c. if f(a)f(m) = 0 then goto (8)

  6. if |f(m)| > e then goto (5) otherwise goto (8)

  7. Display m as root.

  8. Stop

Repository overview

Provide an overview of the directory structure and files, for example:

├── README.md ├── data ├── gen │   ├── analysis │   ├── data-preparation │   └── paper └── src ├── analysis ├── data-preparation └── paper

More resources

referenced from Computer oriented Numerical Method Book By Rajaraman

About

You can say it has been part of a class you've taken at International Institute of Professional Studies, Indore.

bisection-method's People

Contributors

vaishali-sharma-20 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.