Edit

Share via


Math.Sqrt(Double) Method

Definition

Returns the square root of a specified number.

C#
public static double Sqrt(double d);

Parameters

d
Double

The number whose square root is to be found.

Returns

One of the values in the following table.

d parameter Return value
Zero or positive The positive square root of d.
Negative NaN
Equals NaNNaN
Equals PositiveInfinityPositiveInfinity

Examples

The square root of the area of a square represents the length of any side of the square. The following example displays the area of some cities in the United States and gives an impression of each city's size if it were represented by a square.

C#
// Create an array containing the area of some squares.
Tuple<string, double>[] areas =
               { Tuple.Create("Sitka, Alaska", 2870.3),
                 Tuple.Create("New York City", 302.6),
                 Tuple.Create("Los Angeles", 468.7),
                 Tuple.Create("Detroit", 138.8),
                 Tuple.Create("Chicago", 227.1),
                 Tuple.Create("San Diego", 325.2) };

Console.WriteLine("{0,-18} {1,14:N1} {2,30}\n", "City", "Area (mi.)",
                  "Equivalent to a square with:");

foreach (var area in areas)
  Console.WriteLine("{0,-18} {1,14:N1} {2,14:N2} miles per side",
                    area.Item1, area.Item2, Math.Round(Math.Sqrt(area.Item2), 2));

// The example displays the following output:
//    City                   Area (mi.)   Equivalent to a square with:
//
//    Sitka, Alaska             2,870.3          53.58 miles per side
//    New York City               302.6          17.40 miles per side
//    Los Angeles                 468.7          21.65 miles per side
//    Detroit                     138.8          11.78 miles per side
//    Chicago                     227.1          15.07 miles per side
//    San Diego                   325.2          18.03 miles per side

Applies to

Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

See also