[Math] What do you call a curve that resembles a crooked S

functionsgraphing-functions

but it is tilted about theta=artan(x) wit the upper half of the '8' removed about the midpoint and the lower part removed about the of other half.
It looks like a tilted 'S' but flipped, and it's monotonically increasing or decreasing.

function/curve

Best Answer

Here's $\theta = \arctan{x}$,

enter image description here

Also note that the sigmoid function is a mathematical function having an "S" shape ("aka": a sigmoid curve). Often, the sigmoid function refers to the special case of the logistic function:

$y = \dfrac{1}{1 + e^{-x}}$

enter image description here


If you are looking for the "reflection" or "inverse" of a "tilted $S$-shaped curve:

The inverse of $\;\theta = \arctan(x)\;$ is $\;x = \tan(\theta),\;$ and when plotted you get what you might be looking for if you restrict $\theta$ to $\theta \in (-\pi/2, \pi/2)$:

$x = \tan(\theta),\; \theta\in \left(-\frac{\pi}{2}, \frac{\pi}{2}\right)$

enter image description here

Somewhat similarly, what you seem to be describing (a reflected/flipped tilted "S") looks a bit like the simple cubic function: $y = x^3$, (the graph can be translated, or rotated to tilt it more.)

$y = x^3$

enter image description here

Related Question