enow.com Web Search

Search results

  1. Results from the WOW.Com Content Network
  2. Linear function (calculus) - Wikipedia

    en.wikipedia.org/wiki/Linear_function_(calculus)

    In the graph, moving one unit to the right (increasing x by 1) moves the y-value up by a: that is, (+) = +. Negative slope a indicates a decrease in y for each increase in x . For example, the linear function y = − 2 x + 4 {\displaystyle y=-2x+4} has slope a = − 2 {\displaystyle a=-2} , y -intercept point ( 0 , b ) = ( 0 , 4 ...

  3. Linear equation - Wikipedia

    en.wikipedia.org/wiki/Linear_equation

    The graph of this function is a line with slope and y-intercept. The functions whose graph is a line are generally called linear functions in the context of calculus . However, in linear algebra , a linear function is a function that maps a sum to the sum of the images of the summands.

  4. Linear function - Wikipedia

    en.wikipedia.org/wiki/Linear_function

    The graph of such a function of one variable is a nonvertical line. a is frequently referred to as the slope of the line, and b as the intercept. If a > 0 then the gradient is positive and the graph slopes upwards. If a < 0 then the gradient is negative and the graph slopes downwards.

  5. Log–log plot - Wikipedia

    en.wikipedia.org/wiki/Log–log_plot

    A log–log plot of y = x (blue), y = x 2 (green), and y = x 3 (red). Note the logarithmic scale markings on each of the axes, and that the log x and log y axes (where the logarithms are 0) are where x and y themselves are 1. Comparison of linear, concave, and convex functions when plotted using a linear scale (left) or a log scale (right).

  6. Y-intercept - Wikipedia

    en.wikipedia.org/wiki/Y-intercept

    Graph = with the -axis as the horizontal axis and the -axis as the vertical axis.The -intercept of () is indicated by the red dot at (=, =).. In analytic geometry, using the common convention that the horizontal axis represents a variable and the vertical axis represents a variable , a -intercept or vertical intercept is a point where the graph of a function or relation intersects the -axis of ...

  7. Slope - Wikipedia

    en.wikipedia.org/wiki/Slope

    Slope illustrated for y = (3/2)x1.Click on to enlarge Slope of a line in coordinates system, from f(x) = −12x + 2 to f(x) = 12x + 2. The slope of a line in the plane containing the x and y axes is generally represented by the letter m, [5] and is defined as the change in the y coordinate divided by the corresponding change in the x coordinate, between two distinct points on the line.

  8. Graph of a function - Wikipedia

    en.wikipedia.org/wiki/Graph_of_a_function

    Given a function: from a set X (the domain) to a set Y (the codomain), the graph of the function is the set [4] = {(, ()):}, which is a subset of the Cartesian product.In the definition of a function in terms of set theory, it is common to identify a function with its graph, although, formally, a function is formed by the triple consisting of its domain, its codomain and its graph.

  9. Line drawing algorithm - Wikipedia

    en.wikipedia.org/wiki/Line_drawing_algorithm

    dx = x2 − x1 dy = y2 − y1 m = dy/dx for x from x1 to x2 do y = m × (x − x1) + y1 plot(x, y) Here, the points have already been ordered so that x 2 > x 1 {\displaystyle x_{2}>x_{1}} . This algorithm is unnecessarily slow because the loop involves a multiplication, which is significantly slower than addition or subtraction on most devices.