Say I want to find numbers between 1 and 10, but I want the sequence to increase by .1, how would I accomplish this?
2026-03-26 12:35:00.1774528500
Creating an arithmetic sequence that increases by a number other than 1 in Wolfram|Alpha
174 Views Asked by user406613 https://math.techqa.club/user/user406613/detail At
1
range[1, 10, 0.1][ EDIT ] Following OP's comment, I realized that
1...10 step size .1returns the same range.