Details


Declining Balance (DB)

Recall that the straight line method assumes a constant depreciation value. Conversely, the declining balance method assumes a constant depreciation rate per year. And like the sum-of-years method, more depreciation tends to occur earlier in the asset’s life.

Assume the price of a depreciating asset is $P$ and its salvage value after $N$ years is $S$. You could assume the asset depreciates by a factor of $\frac{1}{N}$ (or a rate of $\frac{100}{N}\% $). This method is known as single declining balance. The annual depreciation is:

\[  \frac{1}{N} (\text {previous year’s value})  \]

So for our example, the depreciation during the first year is $\frac{\$ 20,000}{5}=\$ 4,000$. Table 59.3 describes how declining balance would depreciate the asset.

Table 59.3: Declining Balance Example

Year

Depreciation

Year-End Value

1

$\frac{\$ 20,000.00}{5}=\$ 4,000.00$

$\$ 16,000.00$

2

$\frac{\$ 16,000.00}{5}=\$ 3,200.00$

$\$ 12,800.00$

3

$\frac{\$ 12,800.00}{5}=\$ 2,560.00$

$\$ 10,240.00$

4

$\frac{\$ 10,240.00}{5}=\$ 2,048.00$

$\$ 8,192.00$

5

$\frac{\$ 12,800.00}{5}=\$ 1,638.40$

$\$ 6,553.60$


DB Factor

You could also accelerate the depreciation by increasing the factor (and hence the rate) at which depreciation occurs. Other commonly accepted depreciation rates are $\frac{200}{N}\% $ (called double declining balance as the depreciation factor becomes $\frac{2}{N}$) and $\frac{150}{N}\% $. Investment Analysis enables you to choose between these three types for declining balance: 2 (with $\frac{200}{N}\% $ depreciation), 1.5 (with $\frac{150}{N}\% $), and 1 (with $\frac{100}{N}\% $).

Declining Balance and the Salvage Value

The declining balance method assumes that depreciation is faster earlier in an asset’s life; this is what you wanted. But notice the final value is greater than the salvage value. Even if the salvage value were greater than $6,553.60, the final year-end value would not change. The salvage value never enters the calculation, so there is no way for the salvage value to force the depreciation to assume its value. Newnan and Lavelle (1998) describe two ways to adapt the declining balance method to assume the salvage value at the final time. One way is as follows:

Suppose you call the depreciated value after i years $V(i)$. This sets $V(0)=P$ and $V(N)=S$.

  • If $V(N)>S$ according to the usual calculation for $V(N)$, redefine $V(N)$ to equal $S$.

  • If $V(i)<S$ according to the usual calculation for $V(i)$ for some i (and hence for all subsequent $V(i)$ values), you can redefine all such $V(i)$ to equal $S$.

This alteration to declining balance forces the depreciated value of the asset after $N$ years to be $S$ and keeps $V(i)$ no less than $S$.

Conversion to SL

The second (and preferred) way to force declining balance to assume the salvage value is by conversion to straight line. If $V(N)>S$, the first way redefines $V(N)$ to equal $S$; you can think of this as converting to the straight line method for the last time step.

If the $V(N)$ value supplied by DB is appreciably larger than $S$, then the depreciation in the final year would be unrealistically large. An alternate way is to compute the DB and SL step at each timestep and take whichever step gives a larger depreciation (unless DB drops below the salvage value).

After SL assumes a larger depreciation, it continues to be larger over the life of the asset. SL forces the value at the final time to equal the salvage value. As an algorithm, this looks like the following statements:

   V(0) = P;
   for i=1 to N
      if DB step > SL step from (i,V(i))
         take a DB step to make V(i);
      else
         break;
   for j = i to N
      take a SL step to make V(j); 

The MACRS, which is discussed in the section that describes the Depreciation Table window, is actually a variation on the declining balance method with conversion to the straight line method.