Hide

Problem D
Brownian Bears

/problems/brownianbears/file/statement/en/img-0001.jpg
Image by Alex Taylor; Used with permission

Dr. Ursula Major is an internationally renowned expert in the study of bears, specifically brown bears, which are known in many parts of North America as grizzly bears. She is most famous for her discovery of an extremely rare brown bear subspecies — the Brownian bear, whose feeding behavior seems to be guided by an intriguing mixture of regularity and randomness.

At present, Dr. Major is studying a pair of Brownian bears living on a narrow strip of land that is oriented east-west. This territory has $n$ evenly spaced locations where the bears can forage for berries, and Dr. Major has labelled these locations $1, 2, \ldots , n$ from west to east. Every morning, each Brownian bear wakes up in one of the $n~ \textrm{locations}$ and randomly chooses to move either east or west to the neighboring location. What is remarkable is that the probability of moving in either direction is exactly $50\% !$ (Dr. Major’s working theory is that this is rooted in some kind of quantum mechanical phenomenon in the bears’ brains.) If a bear happens to start the day in one of the end locations $(1~ \textrm{or}~ n),$ then it will randomly choose between moving to the sole neighboring location or staying where it is. After making its choice, the bear spends the day foraging for berries in the chosen location, and then also sleeps there that night. The next morning, the process begins all over again.

Dr. Major is particularly interested in days when the two bears forage together, i.e., in the same location, so she plans to observe them over a period of time, possibly as long as a month (or until her funding runs out). At the beginning of the first observation day, the two bears wake up in different locations. Can you help Dr. Major determine the probability that the two bears will forage together for at least one day during the course of her experiment?

Note that the two bears can move past each other without foraging together. For example, if the bears start a particular day in locations $4$ $\textrm{and}~ 5,$ and if the bear in $\textrm{location}~ 4$ moves east and the bear in $\textrm{location}~ 5$ moves west, then the bears simply pass each other that morning without foraging together.

Input

The input consists of a single line containing four integers, $n~ x~ y~ d,$ where $n$ $(2 \leq n \leq 100)$ is the number of locations, $x$ and $y$ $(1 \leq x, y \leq n, x \neq y)$ are the locations where the two bears wake up at the beginning of the first observation day, and $d$ $(1 \leq d \leq 31)$ is the number of observation days.

Output

Output a line containing the probability that the two bears forage together for at least one day during the $d$ observation days. Express this probability as a fraction $a/b$ in lowest terms, where $a$ is a non-negative integer and $b$ is a positive integer. See the sample outputs for examples.

Sample Input 1 Sample Output 1
4 1 2 2
3/8
Sample Input 2 Sample Output 2
6 2 5 2
0/1
Sample Input 3 Sample Output 3
2 1 2 1
1/2

Please log in to submit a solution to this problem

Log in