I have been trying to put $0.\lceil{x}$ in wolfram alpha, but it keeps thinking that I am trying to type $0*\lceil{x}$. I've tried experimenting with the idea that when $0<x\le10$, I can write it as $\frac{\lceil{x}}{10}$, and when $10<x\le100$, I can write that as $\frac{\lceil{x}}{100}$. But to do that, I need a function that turns $x$ into its base, such that the base of 97 is 10, the base of 193 is 100, etc. Then I need to write $\frac{\lceil{x}}{base}$, and then that will be in a notation wolfram alpha will understand. Is there a way to get the base of any number $x$ easily? Also keep in mind that currently my highest math class is algebra 2, so if possible could you explain it in less advanced terms?
2026-03-28 08:51:25.1774687885
How to rewrite 0.ceil(x) in a way that wolfram alpha will accept it
104 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in CEILING-AND-FLOOR-FUNCTIONS
- System of simultaneous equations involving integral part (floor)
- Is there a limit?
- Largest value of sequence
- Does $x+\sqrt{x}$ ever round to a perfect square, given $x\in \mathbb{N}$?
- Fractional part of integer multiples
- Proof regarding the ceiling function.
- Find number of solutions of $(x-1)^2+\lceil x \rceil=4$
- Let $n$ is a natural number. Find $\int_0^n 2x \lfloor x \rfloor dx$
- Inverse cosine inside floor function derivative
- Floor function problem
Related Questions in WOLFRAM-ALPHA
- How can I calculate area enclosed by three curves in WolframAlpha?
- How can I input a function $f$ and then evaluate an expression like $f(a) - f(b)$ in WolframAlpha?
- Why wolfram alpha assumed $ x>0$ as a domain of definition for $x^x $?
- Calculate $\lim_{x \rightarrow 0^+} \frac{\arctan (\log (1+\sqrt x)) \sin^3(x^{3/4})}{(e^{\tan(x)}-1)(1-\sin^2(x))}$
- Calculate domain $f(x)=x^{\frac{x+1}{x+2}}$
- What does s(n) = s(n) mean?
- Fourier transform of $t^2$ discrepancy
- Why does the integral for this function not exist
- Limit of a function that I think is undefined
- Why is the solution to this sum of two sines so complex?
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
Disregard my answer below.
Type StringJoin["0", "x"] into Mathematica.
$$f(x) = \frac{\lceil x \rceil}{10^{\lfloor \log_{10} x \rfloor + 1}}, 0.1 ≤ x; \ f(x) = 0.1, 0 < x < 0.1$$
works.
As you were saying, $0$ point $x$ is $\lceil x \rceil$ divided by a suitable power of $10$. So a first attempt might be $10^{\lceil \log_{10} x \rceil}$, which shifts the decimal point left (making it smaller) by the number of digits of $x$. For example, $102 > 10^2$, but $102$ has $3$ digits, not $2$, so $\lceil \log_{10} 102 \rceil = 3$, and we divide by $10^3$ to get $0.102$. It works!
But try this out for say, $x = 100$, and $\lceil \log_{10} 100 \rceil = 2$, so we end up with $\frac{100}{100^2} = 1$. To fix this problem, we adjust the denominator $10^{\lfloor \log_{10} x \rfloor + 1}$, which has the same effect for all other numbers.
And there are other problems when $0 < x < 0.1$, as now $\log_{10} x ≤ -2$, so the denominator is less than $1$ and we end up multiplying by powers of $10$. However, the ceiling of these values of $x$ is always $1$, so the result is $0.1$.
There you have it: that's how we got the function above.