The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 795 - File: showthread.php PHP 7.4.33 (FreeBSD)
File Line Function
/showthread.php 795 errorHandler->error





Post Reply 
(12C) Geometric Mean with Percentage
07-13-2024, 05:26 AM
Post: #1
(12C) Geometric Mean with Percentage
To calculate the overall geometric mean percentage increase,
you can use the following formula:

GM% = [ n√(1+r1)(1+r2)(1+r3)...... ] - 1

--------------------------------------------------------------------

Procedure:

Initialize by [f] REG to clear all Store Register

Input Percent Data then [R/S] display show Data Count 1, 2 .... n

When done press 0 [R/S] display answer GM%

---------------------------------------------------------------------

Example: FIX 2

An investor has annual return of 5%, 10%, 20%, -50%, and 20%.

[f] REG

5 [R/S] display 1
10 [R/S] display 2
20 [R/S] display 3
-50 [R/S] display 4
20 [R/S] display 5

0 [R/S] display answer -3.62

This results in a -3.62% annual return.

--------------------------------------------------------------------------
Program:
Quote:01 ENTER
02 1
03 %
04 LSTx
05 +
06 STO 0
07 1
08 STO 1
09 R/S
10 X=0
11 GTO 21
12 1
13 %
14 LSTx
15 +
16 STOx0
17 1
18 STO+1
19 RCL 1
20 GTO 09
21 RCL 0
22 RCL 1
23 1/x
24 Y^X
25 1
26 -
27 EEX
28 2
29 x
30 GTO 00

Gamo 7/2024
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
(12C) Geometric Mean with Percentage - Gamo - 07-13-2024 05:26 AM



User(s) browsing this thread: 5 Guest(s)