How would I round the result from two divided numbers, e.g.
3/2 As when I do
testOne=$((3/2)) $testOne contains "1" when it should have rounded up to "2" as the answer from 3/2=1.5
How would I round the result from two divided numbers, e.g.
3/2 As when I do
testOne=$((3/2)) $testOne contains "1" when it should have rounded up to "2" as the answer from 3/2=1.5
To do rounding up in truncating arithmetic, simply add (denom-1) to the numerator.
Example, rounding down:
N/2 M/5 K/16 Example, rounding up:
(N+1)/2 (M+4)/5 (K+15)/16 To do round-to-nearest, add (denom/2) to the numerator (halves will round up):
(N+1)/2 (M+2)/5 (K+8)/16 testOne=$(( (3 + (2 - 1) / 2)). Even more generally, but in Bash syntax, it would be something like answer=$(( ($numerator + ($denominator - 1) / $denomonator)). You can also do it this way which eliminates all the dollar signs and allows more freedom with spaces (such as around the equal sign): ((answer = (numerator + (denominator - 1) / denomonator))testOne=$(( (3 + (2 - 1) / 2)) correct: testOne=$(( (3 + (2 - 1)) / 2))Good Solution is to get Nearest Round Number is
var=2.5 echo $var | awk '{print int($1+0.5)}' Logic is simple if the var decimal value is less then .5 then closest value taken is integer value. Well if decimal value is more than .5 then next integer value gets added and since awk then takes only integer part. Issue solved
bash will not give you correct result of 3/2 since it doesn't do floating pt maths. you can use tools like awk
$ awk 'BEGIN { rounded = sprintf("%.0f", 3/2); print rounded }' 2 or bc
$ printf "%.0f" $(echo "scale=2;3/2" | bc) 2 awk 'BEGIN { rounded = sprintf("%.0f", 1.000001/2); print rounded }' returns 1$ echo 4.5 |awk '{printf "%.0f",$0}' gives 4 while $ echo 5.5 |awk '{printf "%.0f",$0}' gives 6 – rounds .5 to nearest even integerIf you have integer division of positive numbers which rounds toward zero, then you can add one less than the divisor to the dividend to make it round up.
That is to say, replace X / Y with (X + Y - 1) / Y.
Proof:
Case 1: X = k * Y (X is integer multiple of Y): In this case, we have (k * Y + Y - 1) / Y, which splits into (k * Y) / Y + (Y - 1) / Y. The (Y - 1)/Y part rounds to zero, and we are left with a quotient of k. This is exactly what we want: when the inputs are divisible, we want the adjusted calculation to still produce the correct exact quotient.
Case 2: X = k * Y + m where 0 < m < Y (X is not a multiple of Y). In this case we have a numerator of k * Y + m + Y - 1, or k * Y + Y + m - 1, and we can write the division out as (k * Y)/Y + Y/Y + (m - 1)/Y. Since 0 < m < Y, 0 <= m - 1 < Y - 1, and so the last term (m - 1)/Y goes to zero. We are left with (k * Y)/Y + Y/Y which work out to k + 1. This shows that the behavior rounds up. If we have an X which is a k multiple of Y, if we add just 1 to it, the division rounds up to k + 1.
But this rounding is extremely opposite; all inexact divisions go away from zero. How about something in between?
That can be achieved by "priming" the numerator with Y/2. Instead of X/Y, calculate (X+Y/2)/Y. Instead of proof, let's go empirical on this one:
$ round() > { > echo $((($1 + $2/2) / $2)) > } $ round 4 10 0 $ round 5 10 1 $ round 6 10 1 $ round 9 10 1 $ round 10 10 1 $ round 14 10 1 $ round 15 10 2 Whenever the divisor is an even, positive number, if the numerator is congruent to half that number, it rounds up, and rounds down if it is one less than that.
For instance, round 6 12 goes to 1, as do all values which are equal to 6, modulo 12, like 18 (which goes to 2) and so on. round 5 12 goes down to 0.
For odd numbers, the behavior is correct. None of the exact rational numbers are midway between two consecutive multiples. For instance, with a denominator of 11 we have 5/11 < 5.5/11 (exact middle) < 6/11; and round 5 11 rounds down, whereas round 6 11 rounds up.
round x y takes x divided by y and rounds to the nearest integer.To round up you can use modulus.
The second part of the equation will add to True if there's a remainder. (True = 1; False = 0)
ex: 3/2
answer=$(((3 / 2) + (3 % 2 > 0))) echo $answer 2 ex: 100 / 2
answer=$(((100 / 2) + (100 % 2 > 0))) echo $answer 50 ex: 100 / 3
answer=$(((100 / 3) + (100 % 3 > 0))) echo $answer 34 Given a floating point value, we can round it trivially with printf:
# round $1 to $2 decimal places round() { printf "%.${2:-0}f" "$1" } Then,
# do some math, bc style math() { echo "$*" | bc -l } $ echo "Pi, to five decimal places, is $(round $(math "4*a(1)") 5)" Pi, to five decimal places, is 3.14159 Or, to use the original request:
$ echo "3/2, rounded to the nearest integer, is $(round $(math "3/2") 0)" 3/2, rounded to the nearest integer, is 2 printf "%.0f" "0.5" prints 0 instead of the expected 1, while printf "%.0f" "0.6" prints 1 as expected.printf "%.2f" "$1" is wrong: printf "%.0f" "2.6": bash: printf: 2.6: invalid number.printf "%.${2:-0}f" "$1". I cannot change 1 character :-(printf parses input number according to the locale, so, if the format of numbers in your locale does not match the English syntax (e.g. if the decimal separator is a comma), then printf "%f" 0.5 yields invalid number. To fix this, reset the locale locally, like so: LC_ALL=C printf ...If the decimal separator is comma (eg : LC_NUMERIC=fr_FR.UTF-8, see here):
$ printf "%.0f" $(echo "scale=2;3/2" | bc) bash: printf: 1.50: nombre non valable 0 Substitution is needed for ghostdog74 solution :
$ printf "%.0f" $(echo "scale=2;3/2" | bc | sed 's/[.]/,/') 2 or
$ printf "%.0f" $(echo "scale=2;3/2" | bc | tr '.' ',') 2 Another solution is to do the division within a python command. For example:
$ numerator=90 $ denominator=7 $ python -c "print (round(${numerator}.0 / ${denominator}.0))" Seems less archaic to me than using awk.
I think this should be enough.
$ echo "3/2" | bc echo "2.5*3" | bc gives 7.5You could use the function r(x, p)
By the manpage of the bc command:
r(x, p) : Returns x rounded to p decimal places Here is an Ex.
#!/bin/bash read expression echo "r($expression,3)" | bc -l The result of executing the script on 5+50*3/20 + (19*2)/7 is 17.929
Note: r(x, p) is implemented in the Extended Library and in order to use it you should either use the -l or --mathlib flags:
All of the functions below, including the functions in the extended math library (see the Extended Library subsection below), are available when the -l or --mathlib command-line flags are given, except that the extended math library is not available when the -s option, the -w option, or equivalents are given. Bash built-in arithmetic works with integers only, so when you do division it discards the decimal portion of the result (or the remainder if you prefer) meaning your result is always "rounded down". So you need to do the calculation (and ideally the rounding as well) in an external tool that can work with decimal numbers.
If you leverage a tool that can do rounding, it's very simple. PHP example:
intdiv_php() { php -r "echo round($1 / $2),PHP_EOL;" } $ intdiv_php 3 2 2 Not everyone has PHP on their system, though. Some more commonly-found tools do floating-point arithmetic but not nearest-integer rounding -- if you want their result as an integer they will do the same as Bash and round down -- but you can easily get a rounded result simply by adding 0.5 to the result before you output it as an integer. This ensures the output will always be the nearest integer to your actual result.
Example with the very common awk:
intdiv_awk() { awk "BEGIN {print int(($1 / $2) + 0.5)}" } $ intdiv_awk 3 2 2 Example with the also very common bc:
intdiv_bc() { bc <<< "scale=1; out=($1 / $2) + 0.5; scale=0; out / 1" } $ intdiv_bc 3 2 2