-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.json
More file actions
1850 lines (1850 loc) · 148 KB
/
Copy pathcards.json
File metadata and controls
1850 lines (1850 loc) · 148 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "Time Value of Money (TVM)",
"topic": "Finance",
"buttonText": "What is Time Value of Money (TVM)?",
"explanation": "<p>The <strong>Time Value of Money (TVM)</strong> is a fundamental finance concept stating that money available today is worth more than the same amount in the future due to its potential earning capacity through interest or investment returns. This principle underpins the valuation of all financial instruments.</p><p>The basic rationale is that money can earn interest, so any amount of money is worth more the sooner it is received.</p><p><strong>Equation:</strong> The general TVM formula is <em> $$FV = PV \times (1 + r)^n$$</em>, where:</p><ul><li><em>FV</em> = Future Value</li><li><em>PV</em> = Present Value</li><li><em>r</em> = interest rate per period</li><li><em>n</em> = number of periods</li></ul><p>This formula is key for discounting and compounding cash flows in finance.</p>"
},
{
"title": "Future Value (FV)",
"topic": "Finance",
"buttonText": "What is Future Value (FV)?",
"explanation": "<p><strong>Future Value (FV)</strong> represents the amount an investment made today will grow to by a specified date in the future, based on an assumed rate of return or interest rate.</p><p>It reflects the compounded value of money after earning interest over periods.</p><p><strong>Equation:</strong> FV = PV × (1 + r)^n</p><ul><li><em>PV</em> = Present Value or initial amount</li><li><em>r</em> = interest rate per period</li><li><em>n</em> = number of compounding periods</li></ul><p>Different compounding intervals (annual, monthly, daily) affect calculation results.</p>"
},
{
"title": "Present Value (PV)",
"topic": "Finance",
"buttonText": "What is Present Value (PV)?",
"explanation": "<p><strong>Present Value (PV)</strong> measures the current worth of a future sum of money or stream of cash flows discounted at a specific rate that reflects the risk and time value of money.</p><p>This helps investors evaluate how much future cash flows are worth in today's terms.</p><p><strong>Equation:</strong> PV = FV / (1 + r)^n</p><ul><li><em>FV</em> = Future Value</li><li><em>r</em> = discount rate per period</li><li><em>n</em> = number of periods</li></ul><p>PV is widely used in bond pricing, loan valuation, and capital budgeting.</p>"
},
{
"title": "Net Present Value (NPV)",
"topic": "Finance",
"buttonText": "What is Net Present Value (NPV)?",
"explanation": "<p><strong>Net Present Value (NPV)</strong> calculates the sum of the present values of all expected cash inflows and outflows over the life of an investment or project.</p><p>It represents the net benefit or cost in today's terms and serves as a key decision metric for investments.</p><p><strong>Equation:</strong> <br> NPV = ∑ (Ct / (1 + r)^t) - C0</p><ul><li><em>Ct</em> = net cash inflow/outflow at time t</li><li><em>r</em> = discount rate</li><li><em>t</em> = time period</li><li><em>C0</em> = initial investment cost</li></ul><p>A positive NPV indicates a profitable investment.</p>"
},
{
"title": "Internal Rate of Return (IRR)",
"topic": "Finance",
"buttonText": "What is Internal Rate of Return (IRR)?",
"explanation": "<p><strong>Internal Rate of Return (IRR)</strong> is the discount rate at which the net present value (NPV) of all cash flows (both inflows and outflows) equals zero.</p><p>It indicates the expected annualized return of an investment.</p><p><strong>Equation:</strong> Find <em>r</em> such that: <br>0 = ∑ (Ct / (1 + r)^t) - C0</p><p>IRR is widely used for ranking projects or investments; those with IRR exceeding the cost of capital are typically considered desirable.</p>"
},
{
"title": "Modified Internal Rate of Return (MIRR)",
"topic": "Finance",
"buttonText": "What is Modified Internal Rate of Return (MIRR)?",
"explanation": "<p><strong>Modified Internal Rate of Return (MIRR)</strong> improves on IRR by assuming reinvestment of cash flows at the project's cost of capital instead of at the IRR, providing a more realistic measure of profitability and investment risk.</p><p>MIRR addresses multiple IRR problems and better reflects cost and reinvestment rate assumptions.</p><p><strong>Calculation:</strong> MIRR relates terminal value of positive cash flows compounded at the reinvestment rate to the present value of costs discounted at the finance rate.</p>"
},
{
"title": "Discount Rate",
"topic": "Finance",
"buttonText": "What is Discount Rate?",
"explanation": "<p>The <strong>Discount Rate</strong> is the interest rate used in discounting future cash flows to convert them into present values.</p><p>It reflects the opportunity cost of capital, risk of the cash flows, and inflation expectations.</p><p>Choosing the correct discount rate is critical in valuation, investment appraisal, and risk assessment.</p>"
},
{
"title": "Risk-free Rate",
"topic": "Finance",
"buttonText": "What is Risk-free Rate?",
"explanation": "<p>The <strong>Risk-free Rate</strong> represents the return on an investment deemed free of credit risk, typically associated with government securities like Treasury bills.</p><p>It serves as the baseline rate in finance models such as the Capital Asset Pricing Model (CAPM) for evaluating risk premiums and expected returns.</p>"
},
{
"title": "Risk Premium",
"topic": "Finance",
"buttonText": "What is Risk Premium?",
"explanation": "<p><strong>Risk Premium</strong> is the additional return over the risk-free rate that investors require to compensate for the risk of a particular investment.</p><p>It accounts for market volatility, credit risk, liquidity risk, and other uncertainties affecting expected returns.</p>"
},
{
"title": "Beta (Systematic Risk)",
"topic": "Finance",
"buttonText": "What is Beta?",
"explanation": "<p><strong>Beta</strong> measures a security's sensitivity to overall market movements, quantifying its systematic risk relative to the market.</p><p>A beta greater than 1 means the security is more volatile than the market; less than 1 means less volatile.</p><p>It is used in CAPM to estimate expected returns: <em>Expected Return = Risk-free Rate + Beta × (Market Return - Risk-free Rate)</em></p>"
},
{
"title": "Annuity",
"topic": "Finance",
"buttonText": "What is an Annuity?",
"explanation": "<p><strong>Annuity</strong> An annuity is a series of equal payments made at regular intervals for a specified period, commonly used in financial products like retirement plans.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Perpetuity",
"topic": "Finance",
"buttonText": "What is a Perpetuity?",
"explanation": "<p><strong>Perpetuity</strong> A perpetuity is a type of annuity that pays an infinite series of equal cash flows with no end, commonly used in valuation formulas.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Present Value of an Annuity (PVA)",
"topic": "Finance",
"buttonText": "What is Present Value of an Annuity (PVA)?",
"explanation": "<p><strong>Present Value of an Annuity (PVA)</strong> Present Value of an Annuity (PVA) is the current worth of a series of equal future payments, discounted at a specific interest rate.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Payback Period",
"topic": "Finance",
"buttonText": "What is Payback Period?",
"explanation": "<p><strong>Payback Period</strong> The payback period is the amount of time required for an investment to generate cash flows sufficient to recover its initial cost.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Discounted Payback Period",
"topic": "Finance",
"buttonText": "What is Discounted Payback Period?",
"explanation": "<p><strong>Discounted Payback Period</strong> The discounted payback period is the time it takes for an investment's discounted cash flows to repay its initial outlay, accounting for the time value of money.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Profitability Index (PI)",
"topic": "Finance",
"buttonText": "What is Profitability Index (PI)?",
"explanation": "<p><strong>Profitability Index (PI)</strong> Profitability Index (PI) is a ratio of the present value of future cash flows generated by a project to its initial investment, used to assess investment attractiveness.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Crossover Rate",
"topic": "Finance",
"buttonText": "What is Crossover Rate?",
"explanation": "<p><strong>Crossover Rate</strong> The crossover rate is the discount rate at which the net present values (NPV) of two competing projects are equal, helping compare their profitability across interest rates.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Effective Annual Rate (EAR)",
"topic": "Finance",
"buttonText": "What is Effective Annual Rate (EAR)?",
"explanation": "<p><strong>Effective Annual Rate (EAR)</strong> The Effective Annual Rate (EAR) is the true annualized interest rate, reflecting the effects of compounding within the year.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Annual Percentage Rate (APR)",
"topic": "Finance",
"buttonText": "What is Annual Percentage Rate (APR)?",
"explanation": "<p><strong>Annual Percentage Rate (APR)</strong> Annual Percentage Rate (APR) is the yearly interest rate charged on borrowed money or earned through investment, excluding the effect of compounding.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> This concept is fundamental to understanding time value of money and is widely used in investment analysis, capital budgeting, and financial planning.</p>"
},
{
"title": "Weighted Average Cost of Capital (WACC)",
"topic": "Corporate Finance",
"buttonText": "What is WACC?",
"explanation": "WACC is the average rate of return a company is expected to pay to finance its assets through a mix of debt and equity, weighted by their proportions in the overall capital structure, used to evaluate investment performance."
},
{
"title": "Cost of Equity",
"topic": "Corporate Finance",
"buttonText": "What is Cost of Equity?",
"explanation": "<p><strong>Cost of Equity</strong> The cost of equity is the return required by equity investors, often estimated using the Capital Asset Pricing Model (CAPM): r = Rf + β(Rm – Rf), reflecting the risk of owning the stock.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Cost of Debt",
"topic": "Corporate Finance",
"buttonText": "What is Cost of Debt?",
"explanation": "<p><strong>Cost of Debt</strong> The cost of debt is the effective interest rate a company pays on its borrowed funds, adjusted for taxes: r_d(1 – T), where T is the tax rate, since interest expenses are tax-deductible.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Capital Structure",
"topic": "Corporate Finance",
"buttonText": "What is Capital Structure?",
"explanation": "<p><strong>Capital Structure</strong> Capital structure is the mix of debt and equity financing a company uses to fund its operations and growth, influencing risk, cost of capital, and shareholder value.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Optimal Capital Structure",
"topic": "Corporate Finance",
"buttonText": "What is Optimal Capital Structure?",
"explanation": "<p><strong>Optimal Capital Structure</strong> The optimal capital structure minimizes the company's WACC, thereby maximizing its overall value and shareholder wealth by balancing debt and equity appropriately.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Pecking Order Theory",
"topic": "Corporate Finance",
"buttonText": "What is Pecking Order Theory?",
"explanation": "<p><strong>Pecking Order Theory</strong> The Pecking Order Theory suggests firms prefer internal financing, then debt, and finally issuing equity, based on the cost and informational asymmetries associated with each source.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Trade-off Theory",
"topic": "Corporate Finance",
"buttonText": "What is Trade-off Theory?",
"explanation": "<p><strong>Trade-off Theory</strong> The Trade-off Theory states that firms balance the tax benefits of debt against the costs of financial distress to determine their optimal capital structure.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Modigliani-Miller Theorems",
"topic": "Corporate Finance",
"buttonText": "What are MM Theorems?",
"explanation": "<p><strong>Modigliani-Miller Theorems</strong> The Modigliani-Miller Theorems propose that in perfect markets, a firm's value is unaffected by its capital structure; however, with taxes, debt provides tax shields, increasing firm value.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Working Capital",
"topic": "Corporate Finance",
"buttonText": "What is Working Capital?",
"explanation": "<p><strong>Working Capital</strong> Working Capital is the difference between a firm's current assets and current liabilities, representing the short-term liquidity available for daily operations.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Operating Cash Flow (OCF)",
"topic": "Corporate Finance",
"buttonText": "What is Operating Cash Flow?",
"explanation": "<p><strong>Operating Cash Flow (OCF)</strong> Operating Cash Flow is the cash generated from normal business operations, indicating the company's ability to sustain and grow its core activities.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Free Cash Flow (FCF)",
"topic": "Corporate Finance",
"buttonText": "What is Free Cash Flow?",
"explanation": "<p><strong>Free Cash Flow (FCF)</strong> Free Cash Flow is the cash generated after capital expenditures, calculated as Operating Cash Flow minus CapEx, available to pay dividends, make investments, or reduce debt.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Capital Expenditure (CapEx)",
"topic": "Corporate Finance",
"buttonText": "What is CapEx?",
"explanation": "<p><strong>Capital Expenditure (CapEx)</strong> Capital Expenditure (CapEx) is the funds spent by a company to acquire, upgrade, or maintain physical assets like property, plants, or equipment.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Dividend Policy",
"topic": "Corporate Finance",
"buttonText": "What is Dividend Policy?",
"explanation": "<p><strong>Dividend Policy</strong> Dividend Policy decides how much profit a company distributes to shareholders as dividends, with common approaches including residual, stable, or constant payout policies.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Stock Repurchase / Treasury Stock",
"topic": "Corporate Finance",
"buttonText": "What is Stock Repurchase?",
"explanation": "<p><strong>Stock Repurchase / Treasury Stock</strong> Stock repurchase, or treasury stock, is when a company buys back its own shares from the market, reducing outstanding shares and often increasing stock price.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Stock Split & Reverse Stock Split",
"topic": "Corporate Finance",
"buttonText": "What are Stock Split and Reverse Stock Split?",
"explanation": "<p><strong>Stock Split & Reverse Stock Split</strong> A stock split increases the number of shares by dividing each share, decreasing its price, while a reverse stock split consolidates shares, increasing their price.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Dividend Reinvestment Plan (DRIP)",
"topic": "Corporate Finance",
"buttonText": "What is DRIP?",
"explanation": "<p><strong>Dividend Reinvestment Plan (DRIP)</strong> A Dividend Reinvestment Plan (DRIP) allows shareholders to automatically reinvest dividends to purchase additional shares, often without commission.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Going Public / IPO",
"topic": "Corporate Finance",
"buttonText": "What is Going Public?",
"explanation": "<p><strong>Going Public / IPO</strong> Going Public, or conducting an Initial Public Offering (IPO), is the process where a private company offers shares to the public for the first time to raise capital.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Float",
"topic": "Corporate Finance",
"buttonText": "What is Float?",
"explanation": "<p><strong>Float</strong> Float refers to the total number of shares issued and available for trading by the public after an IPO or secondary offerings.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Private Placement",
"topic": "Corporate Finance",
"buttonText": "What is Private Placement?",
"explanation": "<p><strong>Private Placement</strong> Private Placement involves selling securities directly to a few accredited investors rather than through a public offering.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Fully Drawn Advance",
"topic": "Corporate Finance",
"buttonText": "What is Fully Drawn Advance?",
"explanation": "<p><strong>Fully Drawn Advance</strong> A Fully Drawn Advance is a type of loan where the entire approved amount is disbursed at once, typically secured by collateral.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Fixed vs. Floating Interest Rates",
"topic": "Corporate Finance",
"buttonText": "What are Fixed and Floating Interest Rates?",
"explanation": "<p><strong>Fixed vs. Floating Interest Rates</strong> Fixed interest rates remain constant throughout the loan period, while floating rates vary with market interest rates, affecting borrowing costs.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Critical for corporate financial management, capital structure decisions, and strategic financial planning.</p>"
},
{
"title": "Net Asset Value",
"topic": "Corporate Finance",
"buttonText": "What is Net Asset Value?",
"explanation": "<p><strong>Net Asset Value (NAV) Explanation</strong> The net asset value of an investment or fund can be impacted by compliance issues related to taxation, including accurate reporting, timely payments, and avoiding penalties that affect the overall NAV.</p> <p><strong>Important Details:</strong> Important for NAV calculation, tax planning, and understanding fiscal policy implications that directly influence the net asset value of an investment or fund.</p>"
},
{
"title": "Primary Market",
"topic": "Financial Markets",
"buttonText": "What is Primary Market?",
"explanation": "<p><strong>Primary Market</strong> The Primary Market is where new securities are issued and sold directly by companies or governments to investors for the first time, such as through Initial Public Offerings (IPOs) or bond offerings.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Secondary Market",
"topic": "Financial Markets",
"buttonText": "What is Secondary Market?",
"explanation": "<p><strong>Secondary Market</strong> The Secondary Market is where existing securities are traded among investors after initial issuance, providing liquidity via stock exchanges like NYSE and NASDAQ or over-the-counter markets.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Stock Exchange",
"topic": "Financial Markets",
"buttonText": "What is a Stock Exchange?",
"explanation": "<p><strong>Stock Exchange</strong> A Stock Exchange is an organized marketplace where securities such as stocks and bonds are bought and sold, examples include NYSE and NASDAQ.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Over-The-Counter (OTC) Market",
"topic": "Financial Markets",
"buttonText": "What is OTC Market?",
"explanation": "<p><strong>Over-The-Counter (OTC) Market</strong> The OTC Market is a decentralized market where securities not listed on formal exchanges are traded directly between parties.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Liquidity",
"topic": "Financial Markets",
"buttonText": "What is Liquidity?",
"explanation": "<p><strong>Liquidity</strong> Liquidity is the ease and speed with which an asset can be converted into cash without significant loss of value.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Market Efficiency",
"topic": "Financial Markets",
"buttonText": "What is Market Efficiency?",
"explanation": "<p><strong>Market Efficiency</strong> Market Efficiency refers to how well market prices reflect all available information, commonly classified as weak, semi-strong, or strong forms.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Security",
"topic": "Financial Markets",
"buttonText": "What is a Security?",
"explanation": "<p><strong>Security</strong> A Security is a financial instrument representing ownership (equity), creditor relationship (debt), or rights to ownership (derivatives).</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Common Stock (Equity)",
"topic": "Financial Markets",
"buttonText": "What is Common Stock?",
"explanation": "<p><strong>Common Stock (Equity)</strong> Common Stock represents ownership shares in a company, typically entitling holders to voting rights and dividends.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Preferred Stock",
"topic": "Financial Markets",
"buttonText": "What is Preferred Stock?",
"explanation": "<p><strong>Preferred Stock</strong> Preferred Stock is a type of equity with fixed dividends and priority over common stock in asset claims but usually without voting rights.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Bond",
"topic": "Financial Markets",
"buttonText": "What is a Bond?",
"explanation": "<p><strong>Bond</strong> A Bond is a fixed income instrument representing a loan made by an investor to an issuer, including corporate, government, and municipal bonds.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Zero-Coupon Bond",
"topic": "Financial Markets",
"buttonText": "What is Zero-Coupon Bond?",
"explanation": "<p><strong>Zero-Coupon Bond</strong> A Zero-Coupon Bond pays no periodic interest but is issued at a discount, maturing at its face value.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Convertible Bond",
"topic": "Financial Markets",
"buttonText": "What is Convertible Bond?",
"explanation": "<p><strong>Convertible Bond</strong> A Convertible Bond can be converted into a predetermined number of the issuer's equity shares, blending debt and equity features.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "High-Yield Bond",
"topic": "Financial Markets",
"buttonText": "What is a High-Yield Bond?",
"explanation": "<p><strong>High-Yield Bond</strong> High-Yield Bonds, or junk bonds, are bonds with lower credit ratings offering higher interest rates due to greater risk.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Investment Grade Bonds",
"topic": "Financial Markets",
"buttonText": "What are Investment Grade Bonds?",
"explanation": "<p><strong>Investment Grade Bonds</strong> Investment Grade Bonds have high credit ratings indicating low risk of default, making them safer investments.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Green Bonds, Social Bonds, Sustainability-Linked Bonds",
"topic": "Financial Markets",
"buttonText": "What are Green, Social, and Sustainability Bonds?",
"explanation": "<p><strong>Green Bonds, Social Bonds, Sustainability-Linked Bonds</strong> These bonds finance projects with positive environmental or social impacts; sustainability-linked bonds connect financial terms to achieving sustainability targets.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Index Fund",
"topic": "Financial Markets",
"buttonText": "What is an Index Fund?",
"explanation": "<p><strong>Index Fund</strong> An Index Fund is a mutual fund or ETF designed to replicate the performance of a specific market index.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Exchange-Traded Fund (ETF)",
"topic": "Financial Markets",
"buttonText": "What is an ETF?",
"explanation": "<p><strong>Exchange-Traded Fund (ETF)</strong> An ETF is a traded fund on stock exchanges that holds a portfolio of assets, offering liquidity and diversification.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Mutual Fund",
"topic": "Financial Markets",
"buttonText": "What is a Mutual Fund?",
"explanation": "<p><strong>Mutual Fund</strong> A Mutual Fund pools money from multiple investors to invest in a diversified portfolio managed by professionals.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Blue-Chip Stock",
"topic": "Financial Markets",
"buttonText": "What is Blue-Chip Stock?",
"explanation": "<p><strong>Blue-Chip Stock</strong> Blue-Chip Stocks are shares of financially sound, well-established companies with a history of reliable performance.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Market Capitalization",
"topic": "Financial Markets",
"buttonText": "What is Market Capitalization?",
"explanation": "<p><strong>Market Capitalization</strong> Market Capitalization is the total market value of a company's outstanding shares, used to classify stocks as large-cap, mid-cap, or small-cap.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Equity Capital Markets (ECM)",
"topic": "Financial Markets",
"buttonText": "What is ECM?",
"explanation": "<p><strong>Equity Capital Markets (ECM)</strong> ECM involves raising capital through the issuance of equity securities like stocks.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Debt Capital Markets (DCM)",
"topic": "Financial Markets",
"buttonText": "What is DCM?",
"explanation": "<p><strong>Debt Capital Markets (DCM)</strong> DCM involves raising capital through the issuance of debt securities such as bonds.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Special Purpose Acquisition Vehicle (SPAC)",
"topic": "Financial Markets",
"buttonText": "What is a SPAC?",
"explanation": "<p><strong>Special Purpose Acquisition Vehicle (SPAC)</strong> A SPAC is a shell company created to raise capital via IPO for the purpose of acquiring an existing company.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Securitization",
"topic": "Financial Markets",
"buttonText": "What is Securitization?",
"explanation": "Securitization is the process of pooling financial assets (like mortgages or loans) and issuing new securities backed by those assets, such as Mortgage-Backed Securities (MBS) or Asset-Backed Securities (ABS)."
},
{
"title": "CUSIP / ISIN",
"topic": "Financial Markets",
"buttonText": "What are CUSIP and ISIN?",
"explanation": "<p><strong>CUSIP / ISIN</strong> CUSIP and ISIN are unique identification codes assigned to financial securities for standardization and easier trading.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Dual Currency Bond",
"topic": "Financial Markets",
"buttonText": "What is a Dual Currency Bond?",
"explanation": "<p><strong>Dual Currency Bond</strong> A Dual Currency Bond pays interest in one currency and principal in another, often used for hedging currency risk.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Private Equity",
"topic": "Financial Markets",
"buttonText": "What is Private Equity?",
"explanation": "<p><strong>Private Equity</strong> Private Equity refers to investments made directly into private companies or buyouts of public companies, typically involving active management.</p><p><strong>Important Details:</strong> Understanding this concept is essential for market participants, investors, and financial analysts.</p>"
},
{
"title": "Income Statement (I/S)",
"topic": "Financial Statements",
"buttonText": "What is Income Statement?",
"explanation": "<p><strong>Income Statement (I/S)</strong> The Income Statement summarizes a company's revenues and expenses over a period, showing the path from revenue to net income, reflecting profitability.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Balance Sheet (B/S)",
"topic": "Financial Statements",
"buttonText": "What is Balance Sheet?",
"explanation": "<p><strong>Balance Sheet (B/S)</strong> The Balance Sheet provides a snapshot of a company's financial position at a point in time, showing assets equal to liabilities plus shareholders' equity.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Cash Flow Statement (CFS)",
"topic": "Financial Statements",
"buttonText": "What is Cash Flow Statement?",
"explanation": "<p><strong>Cash Flow Statement (CFS)</strong> The Cash Flow Statement reports cash inflows and outflows from operating, investing, and financing activities, explaining changes in cash over a period.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Revenue",
"topic": "Financial Statements",
"buttonText": "What is Revenue?",
"explanation": "<p><strong>Revenue</strong> Revenue (or sales) is the total income earned from goods sold or services provided before any expenses are deducted.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Cost of Goods Sold (COGS)",
"topic": "Financial Statements",
"buttonText": "What is COGS?",
"explanation": "<p><strong>Cost of Goods Sold (COGS)</strong> COGS represents the direct costs attributable to the production of the goods sold by a company.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Gross Profit",
"topic": "Financial Statements",
"buttonText": "What is Gross Profit?",
"explanation": "<p><strong>Gross Profit</strong> Gross Profit is calculated as Revenue minus COGS, indicating the profit earned from core production before operating expenses.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Operating Expenses (OpEx)",
"topic": "Financial Statements",
"buttonText": "What are Operating Expenses?",
"explanation": "<p><strong>Operating Expenses (OpEx)</strong> Operating Expenses include costs such as Selling, General & Administrative (SG&A) expenses and Research & Development (R&D) necessary to run the business.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "EBIT",
"topic": "Financial Statements",
"buttonText": "What is EBIT?",
"explanation": "<p><strong>EBIT</strong> EBIT (Earnings Before Interest and Taxes) represents operating profit before financing costs and taxes.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "EBITDA",
"topic": "Financial Statements",
"buttonText": "What is EBITDA?",
"explanation": "<p><strong>EBITDA</strong> EBITDA adds back non-cash expenses—depreciation and amortization—to EBIT, measuring operating performance.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Net Income",
"topic": "Financial Statements",
"buttonText": "What is Net Income?",
"explanation": "<p><strong>Net Income</strong> Net Income is the profit remaining after all expenses, including interest and taxes, have been deducted from revenue.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Non-Controlling Interest (NCI)",
"topic": "Financial Statements",
"buttonText": "What is Non-Controlling Interest?",
"explanation": "<p><strong>Non-Controlling Interest (NCI)</strong> NCI represents the portion of equity ownership in a subsidiary not attributable to the parent company.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Depreciation",
"topic": "Financial Statements",
"buttonText": "What is Depreciation?",
"explanation": "<p><strong>Depreciation</strong> Depreciation is the systematic allocation of the cost of tangible assets over their useful lives.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Amortization",
"topic": "Financial Statements",
"buttonText": "What is Amortization?",
"explanation": "<p><strong>Amortization</strong> Amortization is the gradual write-off of intangible assets' cost over time.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Capitalized Expense vs. Expensed",
"topic": "Financial Statements",
"buttonText": "Capitalized vs Expensed?",
"explanation": "<p><strong>Capitalized Expense vs. Expensed</strong> Capitalized expenses are recorded as assets and depreciated/amortized over time, while expensed costs are immediately recognized in the income statement.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Accrual Accounting",
"topic": "Financial Statements",
"buttonText": "What is Accrual Accounting?",
"explanation": "<p><strong>Accrual Accounting</strong> Accrual Accounting records revenues and expenses when they are earned or incurred, regardless of cash movement, contrasting with cash accounting.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Matching Principle",
"topic": "Financial Statements",
"buttonText": "What is Matching Principle?",
"explanation": "<p><strong>Matching Principle</strong> The Matching Principle requires that expenses be recognized in the same period as the revenues they help generate.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Materiality",
"topic": "Financial Statements",
"buttonText": "What is Materiality?",
"explanation": "<p><strong>Materiality</strong> Materiality refers to the significance of financial information in influencing users' decisions.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Going Concern assumption",
"topic": "Financial Statements",
"buttonText": "What is Going Concern?",
"explanation": "<p><strong>Going Concern assumption</strong> The Going Concern assumption implies a company will continue operating for the foreseeable future without liquidation.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Assets - Accounts Receivable, Inventory, PP&E, Goodwill",
"topic": "Financial Statements",
"buttonText": "What are Key Assets?",
"explanation": "<p><strong>Assets - Accounts Receivable, Inventory, PP&E, Goodwill</strong> Assets include Accounts Receivable (money owed by customers), Inventory (goods for sale), Property, Plant & Equipment (PP&E), and Goodwill (intangible asset from acquisitions).</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Liabilities - Accounts Payable, Accrued Expenses, Long-term Debt",
"topic": "Financial Statements",
"buttonText": "What are Key Liabilities?",
"explanation": "<p><strong>Liabilities - Accounts Payable, Accrued Expenses, Long-term Debt</strong> Liabilities include Accounts Payable (money owed to suppliers), Accrued Expenses (incurred but unpaid costs), and Long-term Debt.</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Shareholders' Equity - Common Stock, Retained Earnings, Treasury Stock",
"topic": "Financial Statements",
"buttonText": "What is Shareholders' Equity?",
"explanation": "<p><strong>Shareholders' Equity - Common Stock, Retained Earnings, Treasury Stock</strong> Shareholders' Equity represents ownership value, including Common Stock, Retained Earnings (cumulative profits reinvested), and Treasury Stock (repurchased shares).</p><p><strong>Important Details:</strong> Key component of financial reporting and analysis, used by investors, creditors, and management for decision-making.</p>"
},
{
"title": "Current Ratio",
"topic": "Financial Metrics",
"buttonText": "What is Current Ratio?",
"explanation": "<p><strong>Current Ratio</strong> Current Ratio measures a company's ability to pay short-term liabilities with its short-term assets, calculated as Current Assets divided by Current Liabilities.</p><p><strong>Equation:</strong></p><p>$$\\text{Current Ratio} = \\frac{\\text{Current Assets}}{\\text{Current Liabilities}}$$</p><ul><li><em>Current Assets</em> = Cash, receivables, inventory, and other short-term assets</li><li><em>Current Liabilities</em> = Obligations due within one year</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Quick Ratio (Acid-Test)",
"topic": "Financial Metrics",
"buttonText": "What is Quick Ratio?",
"explanation": "<p><strong>Quick Ratio (Acid-Test)</strong> Quick Ratio measures the company's ability to meet short-term obligations using its most liquid assets, calculated as (Current Assets minus Inventory) divided by Current Liabilities.</p><p><strong>Equation:</strong></p><p>$$\\text{Quick Ratio} = \\frac{\\text{Current Assets} - \\text{Inventory}}{\\text{Current Liabilities}}$$</p><ul><li>Also called the <em>Acid-Test Ratio</em></li><li>Excludes inventory as it may not be quickly liquidated</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Cash Ratio",
"topic": "Financial Metrics",
"buttonText": "What is Cash Ratio?",
"explanation": "<p><strong>Cash Ratio</strong> Cash Ratio is a conservative liquidity measure that compares cash and cash equivalents to current liabilities.</p><p><strong>Equation:</strong></p><p>$$\\text{Cash Ratio} = \\frac{\\text{Cash + Cash Equivalents}}{\\text{Current Liabilities}}$$</p><ul><li>Most conservative liquidity measure</li><li>Only includes most liquid assets</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Inventory Turnover",
"topic": "Financial Metrics",
"buttonText": "What is Inventory Turnover?",
"explanation": "<p><strong>Inventory Turnover</strong> Inventory Turnover shows how many times a company sells and replaces its inventory during a period, calculated as COGS divided by average inventory.</p><p><strong>Equation:</strong></p><p>$$\\text{Inventory Turnover} = \\frac{\\text{Cost of Goods Sold}}{\\text{Average Inventory}}$$</p><ul><li>Higher turnover indicates efficient inventory management</li><li>Industry-specific benchmarks vary significantly</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Days Sales Outstanding (DSO)",
"topic": "Financial Metrics",
"buttonText": "What is DSO?",
"explanation": "<p><strong>Days Sales Outstanding (DSO)</strong> Days Sales Outstanding estimates the average number of days it takes to collect payment after a sale, calculated as (Accounts Receivable / Revenue) times 365.</p><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Days Inventory Held (DIH)",
"topic": "Financial Metrics",
"buttonText": "What is DIH?",
"explanation": "<p><strong>Days Inventory Held (DIH)</strong> Days Inventory Held estimates the average number of days inventory is held before sale.</p><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Days Payable Outstanding (DPO)",
"topic": "Financial Metrics",
"buttonText": "What is DPO?",
"explanation": "<p><strong>Days Payable Outstanding (DPO)</strong> Days Payable Outstanding estimates the average number of days a company takes to pay its suppliers.</p><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Cash Conversion Cycle",
"topic": "Financial Metrics",
"buttonText": "What is Cash Conversion Cycle?",
"explanation": "<p><strong>Cash Conversion Cycle</strong> Cash Conversion Cycle measures the time it takes for a company to convert its investments in inventory and other resources into cash flows from sales, calculated as DSO plus DIH minus DPO.</p><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Gross Margin",
"topic": "Financial Metrics",
"buttonText": "What is Gross Margin?",
"explanation": "<p><strong>Gross Margin</strong> Gross Margin shows the percentage of revenue remaining after deducting COGS, calculated as Gross Profit divided by Revenue.</p><p><strong>Equation:</strong></p><p>$$\\text{Gross Margin} = \\frac{\\text{Gross Profit}}{\\text{Revenue}} = \\frac{\\text{Revenue} - \\text{COGS}}{\\text{Revenue}}$$</p><ul><li>Expressed as a percentage</li><li>Indicates pricing power and production efficiency</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Operating Margin",
"topic": "Financial Metrics",
"buttonText": "What is Operating Margin?",
"explanation": "<p><strong>Operating Margin</strong> Operating Margin measures operating income as a percentage of revenue, reflecting operational efficiency.</p><p><strong>Equation:</strong></p><p>$$\\text{Operating Margin} = \\frac{\\text{Operating Income (EBIT)}}{\\text{Revenue}}$$</p><ul><li>Measures operational efficiency</li><li>Excludes financing and tax effects</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Net Margin",
"topic": "Financial Metrics",
"buttonText": "What is Net Margin?",
"explanation": "<p><strong>Net Margin</strong> Net Margin shows the percentage of revenue converted into net income after all expenses.</p><p><strong>Equation:</strong></p><p>$$\\text{Net Margin} = \\frac{\\text{Net Income}}{\\text{Revenue}}$$</p><ul><li>Bottom-line profitability measure</li><li>Includes all expenses, interest, and taxes</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Return on Assets (ROA)",
"topic": "Financial Metrics",
"buttonText": "What is ROA?",
"explanation": "<p><strong>Return on Assets (ROA)</strong> Return on Assets measures how efficiently a company uses its assets to generate net income.</p><p><strong>Equation:</strong></p><p>$$\\text{ROA} = \\frac{\\text{Net Income}}{\\text{Average Total Assets}}$$</p><ul><li>Measures how efficiently assets generate profit</li><li>Industry-specific; capital-intensive industries typically have lower ROA</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Return on Equity (ROE)",
"topic": "Financial Metrics",
"buttonText": "What is ROE?",
"explanation": "<p><strong>Return on Equity (ROE)</strong> Return on Equity indicates the profitability of shareholders' equity, measuring net income relative to equity.</p><p><strong>Equation:</strong></p><p>$$\\text{ROE} = \\frac{\\text{Net Income}}{\\text{Shareholders' Equity}}$$</p><ul><li>Key measure of profitability for shareholders</li><li>Higher ROE indicates better returns on equity investment</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "DuPont Analysis",
"topic": "Financial Metrics",
"buttonText": "What is DuPont Analysis?",
"explanation": "<p><strong>DuPont Analysis</strong> DuPont Analysis breaks ROE into components: Net Margin, Asset Turnover, and Equity Multiplier to evaluate financial performance drivers.</p><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Earnings Per Share (EPS)",
"topic": "Financial Metrics",
"buttonText": "What is EPS?",
"explanation": "<p><strong>Earnings Per Share (EPS)</strong> Earnings Per Share is the portion of a company's profit allocated to each outstanding share of common stock.</p><p><strong>Equation:</strong></p><p>$$\\text{EPS} = \\frac{\\text{Net Income} - \\text{Preferred Dividends}}{\\text{Weighted Average Shares Outstanding}}$$</p><ul><li>Basic EPS uses actual shares outstanding</li><li>Diluted EPS includes potential shares from conversions</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Debt-to-Equity (D/E) Ratio",
"topic": "Financial Metrics",
"buttonText": "What is Debt-to-Equity Ratio?",
"explanation": "<p><strong>Debt-to-Equity (D/E) Ratio</strong> D/E Ratio measures a company's financial leverage by comparing total debt to shareholders' equity.</p><p><strong>Equation:</strong></p><p>$$\\text{D/E Ratio} = \\frac{\\text{Total Debt}}{\\text{Shareholders Equity}}$$</p><ul><li>Measures financial leverage</li><li>Higher ratios indicate more debt financing</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Interest Coverage Ratio",
"topic": "Financial Metrics",
"buttonText": "What is Interest Coverage Ratio?",
"explanation": "<p><strong>Interest Coverage Ratio</strong> Interest Coverage Ratio assesses a company's ability to pay interest on its debt, calculated as EBIT divided by interest expense.</p><p><strong>Equation:</strong></p><p>$$\\text{Interest Coverage} = \\frac{\\text{EBIT}}{\\text{Interest Expense}}$$</p><ul><li>Measures ability to pay interest obligations</li><li>Higher ratios indicate better debt service capability</li></ul><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Leverage (Financial Gearing)",
"topic": "Financial Metrics",
"buttonText": "What is Leverage?",
"explanation": "<p><strong>Leverage (Financial Gearing)</strong> Leverage refers to the use of debt to finance assets, increasing potential returns but also financial risk.</p><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Free Cash Flow (FCF)",
"topic": "Financial Metrics",
"buttonText": "What is Free Cash Flow?",
"explanation": "<p><strong>Free Cash Flow (FCF)</strong> Free Cash Flow is the cash a company generates after accounting for cash outflows to support operations and maintain capital assets.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> This metric is used extensively in financial analysis and company valuation. Benchmarks vary by industry.</p>"
},
{
"title": "Price-to-Earnings (P/E) Ratio",
"topic": "Valuation Ratios",
"buttonText": "What is P/E Ratio?",
"explanation": "<p><strong>Price-to-Earnings (P/E) Ratio</strong> The Price-to-Earnings (P/E) Ratio compares a company's current share price to its earnings per share (EPS), indicating how much investors are willing to pay for a dollar of earnings.</p><p><strong>Equation:</strong></p><p>$$\\text{P/E Ratio} = \\frac{\\text{Market Price per Share}}{\\text{Earnings per Share}}$$</p><ul><li>Trailing P/E uses past 12 months earnings</li><li>Forward P/E uses projected future earnings}</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Forward P/E vs. Trailing P/E",
"topic": "Valuation Ratios",
"buttonText": "Forward vs. Trailing P/E?",
"explanation": "<p><strong>Forward P/E vs. Trailing P/E</strong> Forward P/E uses forecasted earnings for the next 12 months, while Trailing P/E uses earnings from the past 12 months to value a stock.</p><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Price-to-Book (P/B) Ratio",
"topic": "Valuation Ratios",
"buttonText": "What is P/B Ratio?",
"explanation": "<p><strong>Price-to-Book (P/B) Ratio</strong> The Price-to-Book (P/B) Ratio compares a company’s market price per share to its book value per share, showing how the market values net assets.</p><p><strong>Equation:</strong></p><p>$$\\text{P/B Ratio} = \\frac{\\text{Market Price per Share}}{\\text{Book Value per Share}}$$</p><ul><li>Compares market value to accounting value</li><li>Below 1.0 may indicate undervaluation</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Price-to-Sales (P/S) Ratio",
"topic": "Valuation Ratios",
"buttonText": "What is P/S Ratio?",
"explanation": "<p><strong>Price-to-Sales (P/S) Ratio</strong> Price-to-Sales (P/S) Ratio compares a company’s stock price to its revenue per share, assessing value relative to sales.</p><p><strong>Equation:</strong></p><p>$$\\text{P/S Ratio} = \\frac{\\text{Market Capitalization}}{\\text{Total Revenue}}$$</p><ul><li>Useful for unprofitable companies</li><li>Less susceptible to accounting manipulation</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Enterprise Value to EBITDA (EV/EBITDA)",
"topic": "Valuation Ratios",
"buttonText": "What is EV/EBITDA?",
"explanation": "<p><strong>Enterprise Value to EBITDA (EV/EBITDA)</strong> EV/EBITDA compares Enterprise Value (market cap plus debt minus cash) to earnings before interest, taxes, depreciation, and amortization, reflecting valuation independent of capital structure.</p><p><strong>Equation:</strong></p><p>$$\\text{EV/EBITDA} = \\frac{\\text{Enterprise Value}}{\\text{EBITDA}}$$</p><ul><li>EV = Market Cap + Debt - Cash</li><li>Capital structure neutral valuation metric</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Enterprise Value to Sales (EV/Sales)",
"topic": "Valuation Ratios",
"buttonText": "What is EV/Sales?",
"explanation": "<p><strong>Enterprise Value to Sales (EV/Sales)</strong> EV/Sales compares Enterprise Value to total sales, useful for valuing companies without earnings or with volatile profits.</p><p><strong>Equation:</strong></p><p>$$\\text{EV/Sales} = \\frac{\\text{Enterprise Value}}{\\text{Total Revenue}}$$</p><ul><li>Similar to P/S but accounts for debt</li><li>Useful for comparing companies with different capital structures</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Dividend Yield",
"topic": "Valuation Ratios",
"buttonText": "What is Dividend Yield?",
"explanation": "<p><strong>Dividend Yield</strong> Dividend Yield is the ratio of annual dividends per share to the stock price, indicating the cash return to shareholders.</p><p><strong>Equation:</strong></p><p>$$\\text{Dividend Yield} = \\frac{\\text{Annual Dividends per Share}}{\\text{Price per Share}}$$</p><ul><li>Expressed as a percentage</li><li>Higher yields may indicate value or higher risk</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Dividend Payout Ratio",
"topic": "Valuation Ratios",
"buttonText": "What is Dividend Payout Ratio?",
"explanation": "<p><strong>Dividend Payout Ratio</strong> Dividend Payout Ratio is the fraction of net income paid to shareholders as dividends.</p><p><strong>Equation:</strong></p><p>$$\\text{Payout Ratio} = \\frac{\\text{Dividends per Share}}{\\text{Earnings per Share}}$$</p><ul><li>Shows percentage of earnings paid as dividends</li><li>High ratios may limit reinvestment capacity</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Book Value Per Share",
"topic": "Valuation Ratios",
"buttonText": "What is Book Value Per Share?",
"explanation": "<p><strong>Book Value Per Share</strong> Book Value Per Share is the company's total equity divided by shares outstanding, representing the accounting value per share.</p><p><strong>Equation:</strong></p><p>$$\\text{BVPS} = \\frac{\\text{Shareholders Equity}}{\\text{Shares Outstanding}}$$</p><ul><li>Accounting value per share</li><li>Used in P/B ratio calculations</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "PEG Ratio",
"topic": "Valuation Ratios",
"buttonText": "What is PEG Ratio?",
"explanation": "<p><strong>PEG Ratio</strong> PEG Ratio evaluates the P/E ratio relative to the company's earnings growth rate, helping to assess stock valuation considering growth.</p><p><strong>Equation:</strong></p><p>$$\\text{PEG Ratio} = \\frac{\\text{P/E Ratio}}{\\text{Earnings Growth Rate}}$$</p><ul><li>Adjusts P/E for growth expectations</li><li>PEG < 1 may indicate under looked relative to growth</li></ul><p><strong>Important Details:</strong> Commonly used by analysts and investors for relative valuation and comparison across companies and industries.</p>"
},
{
"title": "Discounted Cash Flow (DCF) Analysis",
"topic": "Valuation Methodologies",
"buttonText": "What is DCF Analysis?",
"explanation": "DCF analysis estimates the intrinsic value of an investment by discounting its expected future free cash flows to present value using a discount rate, typically the weighted average cost of capital (WACC)."
},
{
"title": "Terminal Value",
"topic": "Valuation Methodologies",
"buttonText": "What is Terminal Value?",
"explanation": "<p><strong>Terminal Value</strong> Terminal Value estimates a company's value beyond the forecast period in DCF analysis, commonly calculated using the Gordon Growth model or exit multiples.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Terminal Growth Rate",
"topic": "Valuation Methodologies",
"buttonText": "What is Terminal Growth Rate?",
"explanation": "<p><strong>Terminal Growth Rate</strong> Terminal Growth Rate is the expected stable growth rate of free cash flows beyond the forecast horizon, used in determining Terminal Value in DCF.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Weighted Average Cost of Capital (WACC)",
"topic": "Valuation Methodologies",
"buttonText": "What is WACC?",
"explanation": "<p><strong>Weighted Average Cost of Capital (WACC)</strong> WACC is the discount rate in DCF representing the company’s average cost of financing, weighted by the proportions of debt and equity.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Multiples Valuation (Comparable Company Analysis)",
"topic": "Valuation Methodologies",
"buttonText": "What is Multiples Valuation?",
"explanation": "<p><strong>Multiples Valuation (Comparable Company Analysis)</strong> Multiples Valuation uses valuation ratios from similar companies (comps) to estimate a target company’s value based on market comparables.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Precedent Transaction Analysis",
"topic": "Valuation Methodologies",
"buttonText": "What is Precedent Transaction Analysis?",
"explanation": "<p><strong>Precedent Transaction Analysis</strong> Precedent Transaction Analysis values a company by examining prices paid for similar companies in previous M&A transactions.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Enterprise Value (EV)",
"topic": "Valuation Methodologies",
"buttonText": "What is Enterprise Value?",
"explanation": "<p><strong>Enterprise Value (EV)</strong> Enterprise Value equals Market Capitalization plus Debt minus Cash, representing the total value of the company.</p><p><strong>Equation:</strong></p><p>$$\\text{EV} = \\text{Market Cap} + \\text{Total Debt} - \\text{Cash}$$</p><ul><li>Represents total company value</li><li>Accounts for both equity and debt holders</li></ul><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Equity Value",
"topic": "Valuation Methodologies",
"buttonText": "What is Equity Value?",
"explanation": "<p><strong>Equity Value</strong> Equity Value is the market capitalization, representing the value of shareholders’ ownership in the company.</p><p><strong>Equation:</strong></p><p>$$\\text{Equity Value} = \\text{Share Price} \\times \\text{Shares Outstanding}$$</p><ul><li>Also called Market Capitalization</li><li>Represents value to equity holders only</li></ul><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Intrinsic Value",
"topic": "Valuation Methodologies",
"buttonText": "What is Intrinsic Value?",
"explanation": "<p><strong>Intrinsic Value</strong> Intrinsic Value is the true or fair value of an asset based on fundamental analysis, often estimated through discounted cash flows.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Sum-of-the-Parts (SOTP) Valuation",
"topic": "Valuation Methodologies",
"buttonText": "What is SOTP Valuation?",
"explanation": "<p><strong>Sum-of-the-Parts (SOTP) Valuation</strong> SOTP Valuation values each business segment or subsidiary separately, then sums them to estimate total corporate value.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Asset-Based Valuation",
"topic": "Valuation Methodologies",
"buttonText": "What is Asset-Based Valuation?",
"explanation": "<p><strong>Asset-Based Valuation</strong> Asset-Based Valuation determines a company’s value based on the net value of its assets minus liabilities.</p><p><strong>Important Details:</strong> Fundamental valuation technique used in investment banking, equity research, and corporate finance for determining fair value.</p>"
},
{
"title": "Mergers & Acquisitions (M&A)",
"topic": "Investment Banking",
"buttonText": "What is Mergers & Acquisitions (M&A)?",
"explanation": "[translate:Mergers & Acquisitions (M&A)] refers to the process where companies consolidate by merging or one company acquiring another, involving transactions such as share purchases, asset acquisitions, or hostile takeovers."
},
{
"title": "Target Company",
"topic": "Investment Banking",
"buttonText": "What is Target Company?",
"explanation": "<p><strong>Target Company</strong> The company that is the subject of an acquisition or merger.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Acquirer",
"topic": "Investment Banking",
"buttonText": "What is Acquirer?",
"explanation": "<p><strong>Acquirer</strong> Also called Buyer, the company or entity that purchases or merges with the target company.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Friendly vs. Hostile Takeover",
"topic": "Investment Banking",
"buttonText": "What is Friendly vs. Hostile Takeover?",
"explanation": "<p><strong>Friendly vs. Hostile Takeover</strong> A friendly takeover is approved by the target’s management and board, while a hostile takeover occurs without their consent, often by directly appealing to shareholders.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Tender Offer",
"topic": "Investment Banking",
"buttonText": "What is Tender Offer?",
"explanation": "<p><strong>Tender Offer</strong> An offer made directly to shareholders to buy their stock at a specified price, bypassing company management.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Due Diligence",
"topic": "Investment Banking",
"buttonText": "What is Due Diligence?",
"explanation": "<p><strong>Due Diligence</strong> [translate:Due Diligence] is the detailed appraisal of a business undertaken by a prospective buyer, covering financial, legal, and operational aspects before completing a transaction.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Synergy",
"topic": "Investment Banking",
"buttonText": "What is Synergy?",
"explanation": "<p><strong>Synergy</strong> The expected benefit from a merger or acquisition, often cost savings or increased revenues achieved by combining operations.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Goodwill",
"topic": "Investment Banking",
"buttonText": "What is Goodwill?",
"explanation": "<p><strong>Goodwill</strong> An intangible asset recorded when the purchase price exceeds the fair value of the net identifiable assets of the acquired company.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Leveraged Buyout (LBO)",
"topic": "Investment Banking",
"buttonText": "What is LBO?",
"explanation": "<p><strong>Leveraged Buyout (LBO)</strong> [translate:Leveraged Buyout (LBO)] is a transaction where a company is acquired using a significant amount of borrowed money, secured by the target’s assets.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Divestiture / Spin-off / Carve-out",
"topic": "Investment Banking",
"buttonText": "What are Divestiture, Spin-off, Carve-out?",
"explanation": "<p><strong>Divestiture / Spin-off / Carve-out</strong> Methods of selling or separating parts of a company: divestiture is selling assets; spin-off creates a new independent company; carve-out sells a minority stake.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Earnout",
"topic": "Investment Banking",
"buttonText": "What is Earnout?",
"explanation": "<p><strong>Earnout</strong> A contractual provision in M&A that ties part of the purchase price to the target achieving specified financial goals post-acquisition.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Break-up Fee",
"topic": "Investment Banking",
"buttonText": "What is Break-up Fee?",
"explanation": "<p><strong>Break-up Fee</strong> A penalty fee paid by one party to the other if a deal falls apart under specific conditions.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Go-Shop / No-Shop Clause",
"topic": "Investment Banking",
"buttonText": "What are Go-Shop and No-Shop Clauses?",
"explanation": "<p><strong>Go-Shop / No-Shop Clause</strong> [translate:Go-Shop] allows the target company to solicit better offers after signing an agreement; [translate:No-Shop] prohibits such efforts.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Equity Capital Markets (ECM)",
"topic": "Capital Markets",
"buttonText": "What is ECM?",
"explanation": "<p><strong>Equity Capital Markets (ECM)</strong> Activities related to raising capital through equity issuance, including IPOs and follow-on offerings.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Debt Capital Markets (DCM)",
"topic": "Capital Markets",
"buttonText": "What is DCM?",
"explanation": "<p><strong>Debt Capital Markets (DCM)</strong> Markets where companies raise capital by issuing debt securities like bonds.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Initial Public Offering (IPO)",
"topic": "Capital Markets",
"buttonText": "What is IPO?",
"explanation": "<p><strong>Initial Public Offering (IPO)</strong> The first sale of a company's shares to the public, marking its transition from private to public ownership.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Follow-on Offering / Secondary Offering",
"topic": "Capital Markets",
"buttonText": "What is Follow-on Offering?",
"explanation": "<p><strong>Follow-on Offering / Secondary Offering</strong> An additional issuance of shares by a company after its IPO to raise more capital.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Private Placement",
"topic": "Capital Markets",
"buttonText": "What is Private Placement?",
"explanation": "<p><strong>Private Placement</strong> The sale of securities directly to a limited number of investors, rather than through a public offering.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Underwriting",
"topic": "Capital Markets",
"buttonText": "What is Underwriting?",
"explanation": "<p><strong>Underwriting</strong> The process by which investment banks commit to buying all or a portion of a new securities issuance, either on a firm commitment or best efforts basis.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Book Building",
"topic": "Capital Markets",
"buttonText": "What is Book Building?",
"explanation": "<p><strong>Book Building</strong> A process where underwriters invite investors to bid for shares at various prices to determine the optimal issuance price.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Roadshow",
"topic": "Capital Markets",
"buttonText": "What is Roadshow?",
"explanation": "<p><strong>Roadshow</strong> A series of presentations by a company and underwriters to potential investors prior to a securities offering.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Lock-up Period",
"topic": "Capital Markets",
"buttonText": "What is Lock-up Period?",
"explanation": "<p><strong>Lock-up Period</strong> A contractual period post-IPO during which insiders are restricted from selling their shares.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Syndication",
"topic": "Capital Markets",
"buttonText": "What is Syndication?",
"explanation": "<p><strong>Syndication</strong> A process of distributing portions of loans or bonds among multiple lenders to spread risk.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Origination",
"topic": "Capital Markets",
"buttonText": "What is Origination?",
"explanation": "<p><strong>Origination</strong> The activities related to sourcing and structuring new securities issuances or deals.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Structuring",
"topic": "Capital Markets",
"buttonText": "What is Structuring?",
"explanation": "<p><strong>Structuring</strong> Designing the features of a transaction to meet legal, regulatory, and financial objectives.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Advisory Services",
"topic": "Capital Markets",
"buttonText": "What are Advisory Services?",
"explanation": "<p><strong>Advisory Services</strong> Consulting services provided by investment banks for mergers, acquisitions, capital raising, and other strategic decisions.</p><p><strong>Important Details:</strong> Important for understanding capital raising processes and securities markets operations.</p>"
},
{
"title": "Bulge Bracket Investment Banks",
"topic": "Investment Banking",
"buttonText": "What are Bulge Bracket Banks?",
"explanation": "<p><strong>Bulge Bracket Investment Banks</strong> Largest, full-service investment banks like Goldman Sachs and JPMorgan offering a wide range of services.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Middle Market Investment Banks",
"topic": "Investment Banking",
"buttonText": "What are Middle Market Banks?",
"explanation": "<p><strong>Middle Market Investment Banks</strong> Banks focusing on mid-sized companies and deals, smaller than bulge bracket firms.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Boutique Investment Banks",
"topic": "Investment Banking",
"buttonText": "What are Boutique Banks?",
"explanation": "<p><strong>Boutique Investment Banks</strong> Specialized investment banks focused on specific industries or products.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Elite Boutiques",
"topic": "Investment Banking",
"buttonText": "What are Elite Boutiques?",
"explanation": "<p><strong>Elite Boutiques</strong> Boutiques with strong reputations and expertise, such as Evercore and Lazard.</p><p><strong>Important Details:</strong> Essential concept in M&A, capital raising, and corporate finance advisory services.</p>"
},
{
"title": "Credit Risk",
"topic": "Financial Risk",
"buttonText": "What is Credit Risk?",
"explanation": "<p><strong>Credit Risk</strong> Credit Risk is the risk of loss arising from a borrower or counterparty failing to meet their financial obligations, such as defaulting on a loan.</p><p><strong>Important Details:</strong> Critical for risk management, regulatory compliance, and maintaining financial stability.</p>"
},
{
"title": "Market Risk",
"topic": "Financial Risk",
"buttonText": "What is Market Risk?",
"explanation": "<p><strong>Market Risk</strong> Market Risk refers to the risk of losses due to fluctuations in market prices, including equities, interest rates, foreign exchange (FX), and commodities.</p><p><strong>Important Details:</strong> Critical for risk management, regulatory compliance, and maintaining financial stability.</p>"
},
{
"title": "Liquidity Risk",
"topic": "Financial Risk",
"buttonText": "What is Liquidity Risk?",
"explanation": "<p><strong>Liquidity Risk</strong> Liquidity Risk is the risk that a company or investor cannot meet short-term financial obligations due to inability to quickly convert assets into cash without significant loss.</p><p><strong>Important Details:</strong> Critical for risk management, regulatory compliance, and maintaining financial stability.</p>"
},
{
"title": "Operational Risk",
"topic": "Financial Risk",
"buttonText": "What is Operational Risk?",
"explanation": "<p><strong>Operational Risk</strong> Operational Risk arises from failures in internal processes, systems, or human errors, including fraud, system failures, and management issues.</p><p><strong>Calculation:</strong> Specific formula depends on the context and application.</p><p><strong>Important Details:</strong> Critical for risk management, regulatory compliance, and maintaining financial stability.</p>"
},
{
"title": "Compliance Risk",
"topic": "Financial Risk",
"buttonText": "What is Compliance Risk?",
"explanation": "<p><strong>Compliance Risk</strong> Compliance Risk is the risk of legal or regulatory sanctions, financial loss, or reputational damage resulting from failure to adhere to laws and regulations.</p><p><strong>Important Details:</strong> Critical for risk management, regulatory compliance, and maintaining financial stability.</p>"
},
{
"title": "Legal Risk",
"topic": "Financial Risk",
"buttonText": "What is Legal Risk?",
"explanation": "<p><strong>Legal Risk</strong> Legal Risk involves losses due to lawsuits, contractual disputes, or adverse legal judgments affecting the company.</p><p><strong>Important Details:</strong> Critical for risk management, regulatory compliance, and maintaining financial stability.</p>"
},
{
"title": "Reputational Risk",
"topic": "Financial Risk",
"buttonText": "What is Reputational Risk?",
"explanation": "<p><strong>Reputational Risk</strong> Reputational Risk is the potential loss arising from negative public opinion or damage to a company's brand and goodwill.</p><p><strong>Important Details:</strong> Critical for risk management, regulatory compliance, and maintaining financial stability.</p>"
},
{
"title": "Systemic Risk",
"topic": "Financial Risk",