Skip to main content

Posts

Showing posts from February, 2018

Numerical Analysis lec-4 Newton Raphson method

Hi, Today we'll learn about  Newton-Raphson Method  " Newton's Method ". this method is for finding successively better approximate solutions to the roots of a function (real valued). so are you ready for this............you will. Newton's Method: The Newton's method is one of the most powerful and well known method used for finding a root of f(X) = 0 there are many ways to derive Newton-Raphson method . the simplest way to derive this formula is by using the first two terms in the Taylor series expansion of the form.  Instead of working with the chord joining points on the graph of y= f(X) as in bisection method and false position method s. Newton's method uses the tangent at one point on the graph of y= f(X) therefor it requires only one instead of two initial guesses. Suppose X is an initial guesses draw the tangent line at X= X0 and procedure it to meet the X - axis at X = X1 Newton's Method which shows in picture above. now from righ

HTML - CSS lec-6 "TEXT"

Hi, today we'r going to learn about TEXT  "Headings and paragraphs  Bold, italic, emphasis  Structural and semantic markup". do you ready..............you will. HEADINGS -Structural markup: the elements that you can use to  describe both headings and paragraphs -Semantic markup: which provides extra information; such  as where emphasis is placed in a sentence, that something  you have written is a quotation (and who said it), the  meaning of acronyms, and so on write this code b/w <body> to </body> When creating a web page, you add tags  (known as markup) to the contents of the  page. These tags provide extra meaning  and allow browsers to show users the  appropriate structure for the page. HTML has six "levels" of  headings: <h1> is used for main headings <h2> is used for subheadings  If there are further sections  under the subheadings then the <h3> element is used, and so  on... Browsers display the contents