Questions tagged [graphing-functions]

For questions regarding the plotting or graphing of functions. For questions about the kinds of graphs with vertices and edges, use the (graph-theory) tag instead.

Given a real-valued function $f\colon \mathbf{R} \to \mathbf{R}$, the graph of $f$ is the set of all input-output pairs $(x,f(x))$ regarded as a set of points in the plane $\mathbf{R} \times \mathbf{R}$. Considering the graph of a function gives us a geometric perspective on the data that the function represents.

  • If the function $f$ is continuous, the graph of $f$ "looks continuous." That is, there are no gaps, and the graph is a connected curve.

  • If the function $f$ is differentiable, then it will contain no "sharp corners."

  • If we're thinking of the domain of the function as representing time, the the graph gives us a nice visualization of the change in outputs of the function over time.

A graph can be defined much more generally though. Let $\mathbf{k}$ be a local field, and suppose $f$ is a vector-valued function $f\colon \mathbf{k}^n \to \mathbf{k}^m$ where $f(x_1, \dotsc, x_n) = (y_1, \dotsc, y_m)$ and each coordinate $y_i$ of the output is a function of the $x_1, \dotsc, x_n$. In this setting, the graph of $f$ is the set of points

$$(x_1, \dotsc, x_n, y_1, \dotsc, y_m) \subset \mathbf{k}^{n+m}\,.$$

This general construction of the graph of a function can be useful in the study of algebraic geometry or the study of manifolds.

5041 questions
1
vote
1 answer

Homogeneity of $f(x,y) = \frac{3x^2y}{x^2+y^2}$

Regarding my previous question about the function $f(x,y)$ somebody claimed that $f(ax,ay)=af(x,y)$ is only true for "homogeneous" $x$ and $y$. Does anyone know what "homogeneous" means in this context?
cpiegore
  • 1,490
1
vote
2 answers

Pretty Basic: Determining the intersection.

I have to do the following problems, however my question is basicly: How would you go about interpreting these problems? At first I thought it might be something like this (for problem 1.A) Which reads: Determine the point of intersection of the…
user34548
1
vote
3 answers

How do you plot a graph where $y$ increases in short bursts and not linearly?

I am wondering if it's possible to plot this sort of graph with one equation. Note: the application of what I am doing is for video animation, but I am just asking for the mathematical explanation; software has nothing to do with this. For…
Ben Mora
  • 123
  • 4
1
vote
1 answer

Function for this 3D curve

I am trying to plot a 3D surface like the picture below to help depict the relationship between some variables. I have been fiddling with Google Search builtin plotter, trying different equations, but I do not have the knowledge to progress in this…
1
vote
2 answers

How equal distribute Scale of graph for Min and Max value of Scale??

I have min and max value of the scale and i want it to divide the scale in N partitions. Let i have Min = 0 and Max = 200. That i have tried to get the interval for getting equal distance between two points as: void Main() { double s =…
1
vote
1 answer

Parabolas ( making equation )

A parabola with vertex (1,5) has x-intercepts (a, 0) and (b, 0) where a<0, b>0, and 3 |a|=b . Find a·b. I tried making intercept form but it I can't do it. Please help.
dan
  • 11
1
vote
3 answers

Method for sketching $y = (1 – 3t + 2t^{2})e^{3t}$

I am doing some examination practice, and I've faced the following question: Another particular solution which satisfies $y = 1$ and $\frac {dy}{dx} = 0$ when $t = 0$, has equation $$y = (1 – 3t + 2t^{2})e^{3t}$$ For this particular solution…
1
vote
1 answer

Trying to calculate the distance between two points on x and y coordinates

How do you take the x and y coordinates of Variable a and the x and y coordinates of Variable b and then calculate the distance between them?
kaan
  • 11
1
vote
2 answers

Plotting a linear graph with non-linear values

I am having trouble figuring out how to plot the data below in a linear fashion. What I want is a straight line that relates temperature (left column) and heat capacity (right column) and I'm not sure how to scale the x and y axes appropriately. I…
John Page
  • 635
1
vote
0 answers

Number of hyperbolae from 3 points with a known absolute difference in distance

In GPS, measuring the correct distance to satellites is not possible due to clock errors in the receiver (what you measure is called a psuedo range because it is based on incorrect time which multiplied by C gives incorrect distance). It is however…
1
vote
0 answers

What would the graph of $y=\sin(\log x)$ look like?

What would the graph of $y=\sin(\log x)$ look like? So far I have dawn the conclusions : At $x=1$ $y=0$ The graph never touches $x=0$ ($y$ axis) The maximum is attained at $x = \exp(\pi/2)$
1
vote
2 answers

How to convert this to an equation?

I need to convert this to an equation so that when a user selects a percentage between 0% and 100% it'll return the correct decimal number based on this scale. As you can see the numbers on the ends only have a range of 10% and the center have…
1
vote
1 answer

How to draw a directed graph with arrows showing vertically from bottom to top

If I have a directed graph, how can I draw it with arrows showing in general vertically from bottom to top, like showing a class inheritance pattern in OOP(object oriented programming)?
Qiang Li
  • 4,097
1
vote
1 answer

Drawing ellipsoid with tanh

The function $f(x,y)=\tanh(R-\sqrt{x^2+y^2})$ for a given $R>0$ draws a circle with radius R with maximum and minimum of +1 and -1. This I can see when I plot f[x_, y_] := Tanh[5 - Sqrt[x^2 + y^2]]; ContourPlot[f[x, y], {x, -10, 10}, {y, -10,…
BillyJean
  • 730
1
vote
1 answer

Reading a graph with irregular intervals

This graph represents a large range along the x-axis, but I'm unsure how to read such a graph reliably. For instance, if I wanted to find 2 on the x-axis, what vertical line would I use, and more to the point, why are there two vertical lines…
R4D4
  • 149