x/=c
divides x by c and returns the new value of x.
DivideBy 
x/=c
divides x by c and returns the new value of x.
Examples
open all close allBasic Examples (1)
k = 15;
k /= 3kScope (4)
x = 1.5; x /= 2.5;xv = a;v /= b;vDivide all values in a list by a scalar:
x = {1, 2, 3}x /= 2;xDivide all values in a list by another list:
x /= {10, 20, 30};xThe first argument to DivideBy need not be a symbol:
list = {1, 2, 3}list[[2]] /= clistProperties & Relations (2)
See Also
Tech Notes
Related Guides
History
Introduced in 1988 (1.0)
Text
Wolfram Research (1988), DivideBy, Wolfram Language function, https://reference.wolfram.com/language/ref/DivideBy.html.
CMS
Wolfram Language. 1988. "DivideBy." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/DivideBy.html.
APA
Wolfram Language. (1988). DivideBy. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/DivideBy.html
BibTeX
@misc{reference.wolfram_2026_divideby, author="Wolfram Research", title="{DivideBy}", year="1988", howpublished="\url{https://reference.wolfram.com/language/ref/DivideBy.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_divideby, organization={Wolfram Research}, title={DivideBy}, year={1988}, url={https://reference.wolfram.com/language/ref/DivideBy.html}, note=[Accessed: 13-June-2026]}