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
2
votes
2 answers

Graphs of $x\sin x=\sin x$ and $x=1$

I put $x\sin x = \sin x$ in desmos and it shows this. As it seems, this is not the graph of $x=1$. My question is : Why $\sin x$ can't be cancelled from both sides of $x\sin x =\sin x$ to get $x=1$ ? The graph shows that they are not same.
user537100
2
votes
1 answer

Do All Nonlinear Graphs Have Equations?

I'm a hobby coder and I have a pissload of data coordinates that I know. About 4000. I was wondering if instead of storing the datapoints, maybe I could store the equation that would represent that data. Problem is, I'm not very good at math, and I…
2
votes
1 answer

Graphing software fails to include point $(1,1,1)$ in the graph of $x^3+y^3+z^3-3xyz=0$. Why?

My question arises from another question here. The OP asked to computed the tangent plane to the surface $S$ given by the implicit equation $$x^3+y^3+z^3-3xyz=0$$ at $(1,1,1)$. In order to get an idea of how $S$ should be, I tried to plot it by…
InsideOut
  • 6,883
2
votes
1 answer

How to plot graphs.?.

While studying the concept of maxima and minima, I came across a question: The function $f(x)=2|x| + |x+2| - \left| |x+2| - 2|x| \right|$ Then at which points does the given function has a local minimum or a local maximum Other than using software…
2
votes
2 answers

Is there another way of graphing a line $y = mx + c$ rather than letting $m = 0, 1$?

I was graphing the rule $y = 2x - 3$. Since this rule is of the form $y = mx + c$, we have substituted $m = 2$ and $c = -3$ when $x = 0$. This means the gradient (slope, steepness, etc) of the line $y$ we want to graph will be $2$ since $m$ denotes…
Mr Pie
  • 9,459
2
votes
2 answers

Consider the family of equations $y=x^n$ with the integer parameter n.

I graphed this family of equations with range $0
Alex D
  • 1,214
2
votes
3 answers

How can a "non-function" be graphed?

I am trying to create a program that requires the graphing of a "non-function", i.e, a function where "x" isn't strictly dependent on "y". Let's answer the obvious question: Is it even possible? Yes, it is possible, as demonstrated by online…
2
votes
2 answers

How to find the equation for a line that goes through 2 points without a valid gradient?

i am studying graphs (high school level) and have a task that I cant seem to figgure out. I need to find the equation for a line that goes through the points (2,4) & (2,1). I have learned the formula to find the gradient a by $ a=\frac {\delta y}…
Gregg
  • 31
2
votes
0 answers

Plotting the Kepler stars

Kepler Field of View I'm looking for a way to take stellar coordinates (right ascension / declination) and plot them, so that they look like the picture below. This is what I have now: The trick here, is that I'd like the Kepler's field of view…
Sam
  • 21
2
votes
1 answer

Generate a function from a graph

I want to generate a simulator for behavior that is displayed via charts. The end result will be a behavior that follows some formula like $$f(x) = \sin(x)$$ which will output a sine behavior. However, I want to create my own “handmade” graphs to…
2
votes
0 answers

Distribution-like function

I was messing around on Desmos, and I started plotting a function point-by-point which looks looks like the following: $$\left(1,\ \frac{1}{2!}\right), \left(2,\ \frac{12}{3!}\right),...,\left(9,\ \frac{123456789}{10!}\right), \left(10,\…
2
votes
1 answer

What type of graph shows the relationship of time it takes to travel a certain distance?

For experiment dealing with an electromagnetic train, we measured time it takes for different configurations to travel a set distance. This data now needs to be plot on a graph. What type of graph should be used?
Jess P
  • 21
2
votes
0 answers

Lexicographic Order Graphing

How do I graph a lexicographic order? A lexicographic function means $(a,b) ≤ (c,d)$ iff either 1) $a < c$ or 2) if $a=c$, then $b ≤ d$ So i want to graph the order determined by element $(c,d)$ What I've done so far is try to think of it through…
2
votes
1 answer

finding equation of function from given figure

According to me the right answer is option 2 as it satisfies the point (2,-1) also. But answer says it's option 1 which is the answer. Iam not convinced with the answer. Is my answer correct?
shadow kh
  • 953
  • 5
  • 15
2
votes
2 answers

Is there a quadratic equation that meets the following constraints?

I need a quadratic equation that meets the following $5$ constraints: If $x = 1$ then $y = 100$ If $x = 3$ then $y = 80$ If $x = 5$ then $y = 40$ If $x$ approaches infinity then $y$ approaches $0$ The maximum $y$ for $x$ in domain $[1, +\infty)$ is…