enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Milne-Thomson method for finding a holomorphic function

    en.wikipedia.org/wiki/Milne-Thomson_method_for...

    In his article, [1] Milne-Thomson considers the problem of finding () when 1. u ( x , y ) {\displaystyle u(x,y)} and v ( x , y ) {\displaystyle v(x,y)} are given, 2. u ( x , y ) {\displaystyle u(x,y)} is given and f ( z ) {\displaystyle f(z)} is real on the real axis, 3. only u ( x , y ) {\displaystyle u(x,y)} is given, 4. only v ( x , y ...

  3. Induced path - Wikipedia

    en.wikipedia.org/wiki/Induced_path

    An induced path is sometimes called a snake, and the problem of finding long induced paths in hypercube graphs is known as the snake-in-the-box problem. Similarly, an induced cycle is a cycle that is an induced subgraph of G; induced cycles are also called chordless cycles or (when the length of the cycle is four or more) holes.

  4. Halley's method - Wikipedia

    en.wikipedia.org/wiki/Halley's_method

    In numerical analysis, Halley's method is a root-finding algorithm used for functions of one real variable with a continuous second derivative. Edmond Halley was an English mathematician and astronomer who introduced the method now called by his name. The algorithm is second in the class of Householder's methods, after Newton's method.

  5. Maze-solving algorithm - Wikipedia

    en.wikipedia.org/wiki/Maze-solving_algorithm

    Robot in a wooden maze. A maze-solving algorithm is an automated method for solving a maze.The random mouse, wall follower, Pledge, and Trémaux's algorithms are designed to be used inside the maze by a traveler with no prior knowledge of the maze, whereas the dead-end filling and shortest path algorithms are designed to be used by a person or computer program that can see the whole maze at once.

  6. Zeros and poles - Wikipedia

    en.wikipedia.org/wiki/Zeros_and_poles

    Technically, a point z 0 is a pole of a function f if it is a zero of the function 1/f and 1/f is holomorphic (i.e. complex differentiable) in some neighbourhood of z 0. A function f is meromorphic in an open set U if for every point z of U there is a neighborhood of z in which at least one of f and 1/f is holomorphic.

  7. List of mathematical functions - Wikipedia

    en.wikipedia.org/wiki/List_of_mathematical_functions

    Thomae's function: is a function that is continuous at all irrational numbers and discontinuous at all rational numbers. It is also a modification of Dirichlet function and sometimes called Riemann function. Kronecker delta function: is a function of two variables, usually integers, which is 1 if they are equal, and 0 otherwise.

  8. Toroid - Wikipedia

    en.wikipedia.org/wiki/Toroid

    For example, when a rectangle is rotated around an axis parallel to one of its edges, then a hollow rectangle-section ring is produced. If the revolved figure is a circle, then the object is called a torus. The term toroid is also used to describe a toroidal polyhedron. In this context a toroid need not be circular and may have any number of holes.

  9. Newton's method - Wikipedia

    en.wikipedia.org/wiki/Newton's_method

    The following is an example of a possible implementation of Newton's method in the Python (version 3.x) programming language for finding a root of a function f which has derivative f_prime. The initial guess will be x 0 = 1 and the function will be f ( x ) = x 2 − 2 so that f ′ ( x ) = 2 x .