BipartiteGraphQ[g] yields True if the graph g is a bipartite graph and False otherwise.
BirnbaumSaundersDistribution[\[Alpha], \[Lambda]] represents the Birnbaum\[Dash]Saunders distribution with shape parameter \[Alpha] and scale parameter \[Lambda].
BitNot
(Built-in Mathematica Symbol) BitNot[n] gives the bitwise NOT of the integer n.
BitShiftRight[n, k] shifts the binary bits in the integer n to the right by k places, dropping bits that are shifted past the unit's position on the right. BitShiftRight[n] ...
Blank
(Built-in Mathematica Symbol) _or Blank[] is a pattern object that can stand for any Mathematica expression. _h or Blank[h] can stand for any expression with head h.
___(three _characters) or BlankNullSequence[] is a pattern object that can stand for any sequence of zero or more Mathematica expressions. ___h or BlankNullSequence[h] can ...
__(two _characters) or BlankSequence[] is a pattern object that can stand for any sequence of one or more Mathematica expressions. __h or BlankSequence[h] can stand for any ...
Blend
(Built-in Mathematica Symbol) Blend[{col_1, col_2}, x] gives a color obtained by blending a fraction 1 - x of color col_1 and x of color col_2.Blend[{col_1, col_2, col_3, ...}, x] linearly interpolates ...
Block
(Built-in Mathematica Symbol) Block[{x, y, ...}, expr] specifies that expr is to be evaluated with local values for the symbols x, y, .... Block[{x = x_0, ...}, expr] defines initial local values for x, ...
BlockRandom[expr] evaluates expr with all pseudorandom generators localized, so that uses of SeedRandom, RandomInteger, and related functions within the evaluation of expr do ...