关于银行的定期存款与某些万能保险的收益比较
关于银行的定期存款与某些万能保险的收益比较
22/10/12 因为很多保险从业人员在推销保险的时候总是夸大收益, 并且制造焦虑. 但是其实保险的收益率很低, 特别是那些理财性质的保险. 因为资金在具有流动性的时候是复利的, 一旦复利那么就是不得了的存在.
以某银行目前的一年期2.1%, 二年期2.65%, 三年期3.25%的年化收益存款做比较, 可以看到如下的结果.
```python #22/10/12 fixed term deposit rateOfInterest1Year=2.1/100 rateOfInterest2Year=2.65/100 rateOfInterest3Year=3.25/100 totalRevenue=1.0 totalPeriod=6 unit=1.0 TimeEnd= int(totalPeriod/unit)+1 for i in range(1, TimeEnd): print(f"Year({i*unit})=", end='') totalRevenue = (1.0+rateOfInterest1Year)**i totalRevenue -=1.0 totalRevenue *= unit print(f"{totalRevenue*100}%") # 这个是6个复利后最后年末的实际收益, 能够达到13.2% ``` Year(1.0)=2.0999999999999908% Year(2.0)=4.244099999999973% Year(3.0)=6.433226099999967% Year(4.0)=8.668323848099968% Year(5.0)=10.950358648910052% Year(6.0)=13.280316180537156% ```python unit=2.0 TimeEnd= int(totalPeriod/unit)+1 for i in range(1, TimeEnd): print(f"Year({i*unit})=", end='') totalRevenue = (1.0+rateOfInterest2Year)**i totalRevenue -=1.0 totalRevenue *= unit print(f"{totalRevenue*100}%") # 这个是3个复利最后年末的实际收益, 能够达到16% ``` Year(2.0)=5.299999999999994% Year(4.0)=10.74044999999999% Year(6.0)=16.325071924999968% ```python unit=3.0 TimeEnd= int(totalPeriod/unit)+1 for i in range(1, TimeEnd): print(f"Year({i*unit})=", end='') totalRevenue = (1.0+rateOfInterest3Year)**i totalRevenue -=1.0 totalRevenue *= unit print(f"{totalRevenue*100}%") # 这个是3个复利最后年末的实际收益, 能够达到19.8% ``` Year(3.0)=9.749999999999993% Year(6.0)=19.81687499999998% ```python ```
在6年的计算里面, 存款实际可以达到 19.8% 但是很多需要连续缴纳5年的然后在第六年才开始有收益的保险宣称后续有年化3.5%的收益, 但是相比较差距是巨大的.
希望大家自己购买的时候计算一下, 是否真的符合自己的目标.
分类:
persional diary
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· DeepSeek 开源周回顾「GitHub 热点速览」