<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>fornext1119</author_name>
  <author_url>https://blog.hatena.ne.jp/fornext1119/</author_url>
  <blog_title>ONLY DO WHAT ONLY YOU CAN DO</blog_title>
  <blog_url>https://fornext1119.hatenablog.com/</blog_url>
  <categories>
    <anon>非線形方程式</anon>
    <anon>数値計算</anon>
    <anon>ニュートン法</anon>
    <anon>C#</anon>
  </categories>
  <description>非線形方程式の解法（ニュートン法）を利用して2の平方根を求める 1. まず, 関数 上の点 を考える. 2. 点 における の接線と 軸との交点 は より解に近づいている. 3. この作業を繰り返して行くことで解を求める.点 での接線の傾きは なので, この式を漸化式として用いる. using System; public class CS0904 { public static void Main() { double x0 = 2; while (true) { double x1 = x0 - (f0(x0) / f1(x0)); Console.WriteLine(string.For…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Ffornext1119.hatenablog.com%2Fentry%2F2014%2F06%2F09%2F134404&quot; title=&quot; C#で非線形方程式を解く (ニュートン法) - ONLY DO WHAT ONLY YOU CAN DO&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url>http://cdn-ak.f.st-hatena.com/images/fotolife/f/fornext1119/20140531/20140531190701.png</image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2014-06-09 13:44:04</published>
  <title> C#で非線形方程式を解く (ニュートン法)</title>
  <type>rich</type>
  <url>https://fornext1119.hatenablog.com/entry/2014/06/09/134404</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
