a { text-decoration: none; color: var(--primary); transition: var(--transition); } a:hover { color: var(--primary-hover); } ul, ol { padding-left: 24px; margin-bottom: 1.5em; } li { margin-bottom: 8px; } p { margin-bottom: 1.5em; max-width: none; } strong { font-weight: 600; color: var(--text-main); } /* Layout structure */ .app-container { display: flex; flex-direction: column; min-height: 100vh; } /* Topbar */ .topbar { position: fixed; top: 0; left: 0; right: 0; height: 64px; background: rgba(var(--surface), 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 100; display: flex; align-items: center; padding: 0 24px; } .topbar-inner { display: flex; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; } .back-link { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--text-muted); padding: 8px 12px; border-radius: var(--radius-md); } .back-link:hover { background: var(--surface-hover); color: var(--text-main); } /* Breadcrumbs */ .breadcrumbs { margin-left: 24px; padding-left: 24px; border-left: 1px solid var(--border); font-size: 14px; display: flex; align-items: center; gap: 8px; } .breadcrumbs a { color: var(--text-muted); font-weight: 500; } .breadcrumbs a:hover { color: var(--text-main); } .breadcrumb-sep { color: var(--border); } /* Dropdown */ .chapter-dropdown { position: relative; display: inline-block; } .chapter-dropdown>a { color: var(--text-main); font-weight: 600; display: flex; align-items: center; gap: 4px; padding: 4px 8px; border-radius: var(--radius-md); transition: var(--transition); } .chapter-dropdown>a:hover { background: var(--surface-hover); } .chapter-dropdown>a svg { width: 14px; height: 14px; } .dropdown-content { display: none; position: absolute; top: 100%; left: 0; background-color: var(--surface); min-width: 160px; box-shadow: var(--shadow-md); border: 1px solid var(--border); border-radius: var(--radius-md); z-index: 200; padding: 8px 0; margin-top: 4px; } .dropdown-content a { color: var(--text-main); padding: 8px 16px; display: block; font-weight: 500; } .dropdown-content a:hover { background-color: var(--surface-hover); color: var(--primary); } .chapter-dropdown:hover .dropdown-content { display: block; } /* Main Grid */ .main-wrapper { margin-left: 300px; display: flex; flex: 1; margin-top: 64px; justify-content: flex-start; width: calc(100% - 300px); } /* Fixed Sidebar */ .sidebar { left: 0; top: 64px; bottom: 0; width: 300px; position: fixed; overflow-y: auto; border-right: 1px solid var(--border); background: var(--bg); padding: 32px 24px; z-index: 100; } @media (max-width: 1024px) { .sidebar { display: none; } .main-wrapper { margin-left: 0; width: 100%; } } /* Table of Contents */ .toc-chapter-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 24px; line-height: 1.3; padding-bottom: 16px; border-bottom: 1px solid var(--border); } .toc-title { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; } .toc-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; } .toc-link { display: block; padding: 8px 12px; border-radius: var(--radius-md); color: var(--text-muted); font-size: 14px; font-weight: 500; } .toc-link:hover { background: var(--surface-hover); color: var(--text-main); } .toc-link.active { background: var(--primary-light); color: var(--primary); font-weight: 600; } .toc-link.sub { font-size: 13px; padding: 6px 12px 6px 24px; color: var(--text-muted); font-weight: 400; } .toc-link.sub:hover { background: var(--surface-hover); color: var(--text-main); } /* Content Area */ .content-area { flex: 1; padding: 48px 100px 100px 40px; max-width: none; } /* Hero inside content */ .chapter-hero { margin-bottom: 56px; } .kicker { font-size: 14px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; display: block; } .chapter-title { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; letter-spacing: -0.02em; } .chapter-subtitle { font-size: 18px; color: var(--text-muted); max-width: 65ch; margin-bottom: 32px; } .stat-strip { display: flex; flex-wrap: wrap; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 8px; gap: 8px; } .stat { flex: 1 1 120px; padding: 16px; background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); } .stat .num { font-family: 'Outfit', sans-serif; font-size: 24px; color: var(--text-main); font-weight: 700; display: block; line-height: 1.1; margin-bottom: 4px; } .stat .lbl { font-size: 13px; color: var(--text-muted); font-weight: 500; } .lede { font-size: 20px; color: var(--text-main); padding-left: 24px; border-left: 4px solid var(--primary); margin-bottom: 48px; font-weight: 500; line-height: 1.6; } /* Section Typography */ .block { margin-bottom: 64px; } .block h2 { font-size: 32px; border-bottom: 2px solid var(--border); padding-bottom: 12px; margin-bottom: 24px; margin-top: 64px; } .block h2 .num { color: var(--primary); margin-right: 12px; } .block h3 { font-size: 22px; margin-top: 40px; margin-bottom: 16px; } /* Callouts */ .callout { border-radius: var(--radius-lg); padding: 24px; margin: 32px 0; border: 1px solid var(--border); font-size: 15px; } .callout-label { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; } .callout p:last-child { margin-bottom: 0; } .callout.tip { background: var(--success-light); border-color: rgba(16, 185, 129, 0.2); } .callout.tip .callout-label { color: var(--success); } .callout.tip p { color: var(--text-dark); } .callout.tip p strong { color: var(--text-dark); font-weight: 700; } .callout.trap { background: var(--danger-light); border-color: rgba(239, 68, 68, 0.2); } .callout.trap .callout-label { color: var(--danger); } .callout.trap p { color: var(--text-main); } /* Tables */ .table-wrap { overflow-x: auto; margin: 32px 0; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); } table { width: 100%; border-collapse: collapse; min-width: 600px; font-size: 15px; } th, td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border); } th { background: var(--bg); font-weight: 600; color: var(--text-main); } tr:last-child td { border-bottom: none; } td.hl { color: var(--primary); font-weight: 600; } tr:hover td { background: var(--surface-hover); } /* Diagrams */ .diagram-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; margin: 40px 0; box-shadow: var(--shadow-sm); font-size: 15px; } .diagram-card svg { width: 100%; height: auto; display: block; } .diagram-caption { font-size: 14px; color: var(--text-muted); margin-top: 16px; text-align: center; font-weight: 500; } /* Quiz */ .quiz { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; margin-top: 64px; } .quiz h2 { border-bottom: none; margin-top: 0; } details.q { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; } details.q summary { padding: 20px; cursor: pointer; font-weight: 600; color: var(--text-main); list-style: none; display: flex; justify-content: space-between; align-items: center; } details.q summary::-webkit-details-marker { display: none; } details.q summary::after { content: "View Answer"; font-size: 13px; font-weight: 600; color: var(--primary); padding: 4px 12px; background: var(--primary-light); border-radius: 99px; transition: var(--transition); } details.q[open] summary::after { content: "Hide Answer"; } details.q[open] summary { border-bottom: 1px solid var(--border); } .q-answer { padding: 20px; background: var(--surface); font-size: 15px; color: var(--text-muted); } /* Next Chapter */ .next-footer { margin-top: 64px; padding: 40px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); border-radius: var(--radius-xl); text-align: center; color: #fff; display: block; text-decoration: none; box-shadow: var(--shadow-lg); } .next-footer:hover { transform: translateY(-2px); color: #fff; } .next-footer .lbl { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.8; margin-bottom: 8px; display: block; } .next-footer .title { font-size: 28px; font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 12px; } .next-footer p { margin: 0 auto; opacity: 0.9; font-size: 16px; } /* === Interactive Quiz Engine === */ .quiz-subtitle { color: var(--text-muted); font-size: 16px; margin-bottom: 24px; max-width: 100%; } .quiz-progress { width: 100%; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 12px; } .quiz-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 3px; transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); width: 0; } .quiz-meta { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--text-muted); font-weight: 500; margin-bottom: 32px; } .quiz-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; box-shadow: var(--shadow-sm); } .quiz-section-tag { display: inline-block; padding: 4px 12px; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 700; border-radius: 99px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; } .quiz-q-text { font-size: 17px; font-weight: 600; color: var(--text-main); line-height: 1.6; margin-bottom: 24px; max-width: 100%; } .quiz-options { display: flex; flex-direction: column; gap: 12px; } .quiz-option { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; background: var(--bg); border: 2px solid var(--border); border-radius: var(--radius-md); cursor: pointer; font-size: 15px; color: var(--text-main); text-align: left; width: 100%; transition: all 0.2s ease; line-height: 1.55; font-family: 'Inter', sans-serif; } .quiz-option:hover:not(.qo-disabled) { border-color: var(--primary); background: var(--primary-light); transform: translateX(4px); } .quiz-option .ol { flex-shrink: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); font-weight: 700; font-size: 13px; color: var(--text-muted); transition: all 0.2s ease; margin-top: 1px; } .quiz-option:hover:not(.qo-disabled) .ol { border-color: var(--primary); color: var(--primary); } .quiz-option.qo-correct { border-color: var(--success); background: var(--success-light); } .quiz-option.qo-correct .ol { background: var(--success); border-color: var(--success); color: #fff; } .quiz-option.qo-wrong { border-color: var(--danger); background: var(--danger-light); } .quiz-option.qo-wrong .ol { background: var(--danger); border-color: var(--danger); color: #fff; } .quiz-option.qo-disabled { cursor: default; opacity: 0.65; } .quiz-option.qo-disabled.qo-correct { opacity: 1; color: var(--text-dark); } .quiz-option.qo-disabled.qo-wrong { opacity: 1; } .quiz-feedback { margin-top: 20px; padding: 20px 24px; border-radius: var(--radius-md); background: var(--bg); border: 1px solid var(--border); font-size: 15px; line-height: 1.7; color: var(--text-muted); animation: qFadeIn 0.3s ease; } .quiz-feedback.qf-correct { border-left: 4px solid var(--success); } .quiz-feedback.qf-wrong { border-left: 4px solid var(--danger); } .quiz-feedback-label { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; } .qf-correct .quiz-feedback-label { color: var(--success); } .qf-wrong .quiz-feedback-label { color: var(--danger); } @keyframes qFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } } .quiz-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; } .quiz-btn { padding: 12px 24px; border-radius: var(--radius-md); font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s ease; font-family: 'Inter', sans-serif; } .quiz-btn:disabled { opacity: 0.4; cursor: not-allowed; } .quiz-btn-primary { background: var(--primary); color: #fff; } .quiz-btn-primary:hover:not(:disabled) { background: var(--primary-hover); transform: translateY(-1px); } .quiz-btn-secondary { background: var(--surface); color: var(--text-main); border: 1px solid var(--border); } .quiz-btn-secondary:hover:not(:disabled) { background: var(--surface-hover); } .quiz-dots { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; max-width: 320px; } .quiz-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--border); transition: all 0.2s ease; cursor: pointer; border: 2px solid transparent; } .quiz-dot:hover { transform: scale(1.25); } .quiz-dot.qd-active { border-color: var(--primary); background: var(--primary); transform: scale(1.25); } .quiz-dot.qd-correct { background: var(--success); } .quiz-dot.qd-wrong { background: var(--danger); } .quiz-summary { text-align: center; padding: 48px 24px; animation: qFadeIn 0.4s ease; } .quiz-score-ring { width: 160px; height: 160px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 24px; border: 6px solid var(--primary); background: var(--primary-light); } .quiz-score-ring .qs-num { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 800; color: var(--primary); line-height: 1; } .quiz-score-ring .qs-of { font-size: 16px; color: var(--text-muted); font-weight: 500; } .quiz-summary h3 { font-size: 24px; margin-bottom: 8px; } .quiz-summary-msg { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; } .quiz-breakdown { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 32px; text-align: left; } .quiz-bd-item { padding: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); } .quiz-bd-item .bd-label { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; } .quiz-bd-item .bd-score { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-main); } .quiz-summary-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; } @media (max-width: 640px) { .quiz-card { padding: 20px; } .quiz-option { padding: 14px 16px; gap: 10px; font-size: 14px; } .quiz-dots { max-width: 240px; } .quiz-nav { flex-wrap: wrap; justify-content: center; } .quiz-score-ring { width: 130px; height: 130px; } .quiz-score-ring .qs-num { font-size: 36px; } }
FINRA SIE EXAM · STUDY GUIDE

Chapter 1 — The Architecture of the Market

A full walkthrough of how the securities industry is regulated, structured, and financed — the foundation everything else in the SIE builds on.

75scored items
1h 45mtime allowed
12items from this chapter
16%of total exam
0penalty for guessing

Before the SIE asks you a single question about stocks or bonds, it wants to know whether you understand the system those products live in — who watches it, who participates in it, where trades happen, what moves it, and how new securities enter it in the first place. This chapter builds that system from the ground up.

1.1Who Regulates What

Securities regulation in the U.S. works in layers, not one single watchdog. At the top sits a federal agency with broad legal authority. Below it, industry-run organizations handle the day-to-day rule-writing and enforcement for their specific corner of the business. Alongside both, a handful of specialized agencies each own one narrow job — taxes, state oversight, systemic stability, or what happens if a firm collapses. The exam wants you to know not just what each body is called, but which layer it belongs to and what happens if it disappeared.

The SEC: the top of the pyramid

The Securities and Exchange Commission is the primary federal regulator of the U.S. securities industry. Congress created it in the wake of the 1929 crash with a mission that boils down to three things: protect investors, keep markets fair and orderly, and help capital formation happen efficiently. The SEC has sweeping legal authority over exchanges, broker-dealers, investment advisers, and public companies — but in practice it doesn't examine every firm itself. It delegates a huge amount of that day-to-day supervision downward, to SROs.

SROs: the SEC's delegated enforcers

A self-regulatory organization is an industry-run body that the SEC has authorized to write and enforce rules for its own members. This is a deliberate design: the people closest to the business write rules that are technically informed, and the SEC oversees the SROs themselves rather than every individual firm directly.

  • FINRA — regulates broker-dealers and their registered representatives; the SRO you'll interact with most as a licensed professional.
  • CBOE — writes and enforces rules for options trading on its exchange.
  • MSRB — writes rules for municipal securities dealers and municipal advisors, but notably doesn't examine firms itself; FINRA and bank regulators enforce MSRB rules on its behalf.
Exam Trap

The MSRB writes municipal securities rules but has no examination or enforcement staff of its own. Don't confuse "who makes the rule" with "who enforces the rule" — the exam likes to test that gap directly.

The specialists

A handful of other agencies each own one specific function. You don't need deep expertise in any of them for the SIE — just a clean, confident sense of what each one does and does not do.

Agency What it actually does What it is not
Treasury / IRS Issues Treasury securities; oversees tax matters tied to investing Not a securities-conduct regulator
NASAA Umbrella association for state securities regulators; enforces state "blue sky" laws Not a federal agency
Federal Reserve Sets monetary policy; sets margin lending rules (Regulation T) Not a bank-deposit insurer
SIPC Restores customer cash and securities left at a failed broker-dealer, up to coverage limits Does not insure against investment losses
FDIC Insures deposits at banks Not a securities regulator at all
How to remember it

SIPC and FDIC get mixed up constantly because they sound like siblings. Anchor them to the institution: FDIC protects your money at a bank if the bank fails. SIPC protects your securities and cash at a brokerage if the brokerage fails. Neither one protects you from a stock going to zero — that's just a bad investment, and no agency insures against that.

1.2The Market's Players

Every trade that happens passes through a chain of specialized participants, each with a distinct role and a distinct interest. Knowing "what a broker-dealer is" isn't enough for the SIE — you need to know whose interest each participant represents, because that's exactly the distinction test questions probe.

Investor places an order Broker-Dealer introducing or clearing firm Exchange / Market Maker Clearing Corp DTCC / OCC settles the trade Custodian holds asset
A simplified trade lifecycle — the same backbone the SIE expects you to recognize in scenario questions.

Investors

Not all investors are treated equally under securities law. An accredited investor meets minimum income or net-worth thresholds and is legally permitted to buy into private offerings that aren't open to the general public — the idea being they're financially sophisticated (or well-resourced) enough to bear the risk without the full protections of a registered offering. Institutional investors — pension funds, insurance companies, mutual funds — trade in large size and are assumed to have professional-grade resources. Retail investors are everyday individuals, and most investor-protection rules exist specifically because of them.

Broker-dealers, sliced by function

A firm rarely does everything itself. An introducing broker-dealer owns the customer relationship — opens the account, takes the order — but hands off custody and trade processing to someone else. A clearing (or carrying) broker-dealer is that someone else: it holds customer assets and actually processes settlement. A prime broker is a specialized version of this relationship built for large institutional clients like hedge funds, bundling custody, financing, and trade execution services.

Advisers, issuers, and the people who keep the plumbing running

An investment adviser is compensated for giving ongoing investment advice and — unlike a broker-dealer working on a suitability standard — owes clients a fiduciary duty, the highest standard of care in the industry. A municipal advisor plays a similar advisory role specifically for municipal issuers structuring bond deals. The issuer is the entity actually selling the security (a corporation, a municipality); the underwriter is the investment bank that helps structure, price, and distribute it.

Behind the scenes, traders and market makers provide liquidity by standing ready to buy or sell at quoted prices. Custodians and trustees hold assets safely on behalf of someone else, with a trustee carrying a specific fiduciary duty tied to a trust or bond indenture. Transfer agents maintain the official record of who owns what, processing name changes and reissuing certificates. And depositories and clearing corporations — chiefly the DTCC and, for listed options, the OCC — are the settlement plumbing that makes sure a trade actually finalizes once it's agreed.

1.3Where Trading Happens

The SIE draws a sharp line between where a security is created and where it's traded afterward — and then subdivides "traded afterward" further than most people expect. Four markets, each defined by a different relationship between buyer, seller, and issuer.

1. Primary Market Issuer sells a NEW security directly to investors e.g. an IPO — issuer receives the proceeds 2. Secondary Market Investors trade EXISTING securities among themselves e.g. NYSE — issuer isn't a party to the trade 3. Third Market An exchange-LISTED security trading over-the-counter e.g. an NYSE-listed stock traded off the exchange 4. Fourth Market Institutions trade directly with each other e.g. via an ECN — no broker-dealer middleman
1st = new security, issuer sells. 2nd = existing security, on-exchange. 3rd = listed security, off-exchange. 4th = institution-to-institution, no middleman.

The distinction that trips people up most is primary vs. secondary — remember that the test is simply "does the issuer receive the proceeds of this specific trade?" If yes, it's primary, no matter how the deal is structured. If the money is just changing hands between two investors, it's secondary, even minutes after the IPO closed.

1.4Reading the Economy

The SIE expects a working, practical grasp of macroeconomics — not because you'll be forecasting GDP as a registered rep, but because interest rates, the business cycle, and international capital flows all move the prices of the products you'll eventually sell.

The Federal Reserve's toolkit

Monetary policy — the Fed's job — is managing the money supply and interest rates. Fiscal policy — Congress and the President's job — is taxing and spending. Keep those two cleanly separated; the exam tests the distinction directly.

The Fed's main lever is open market operations: buying and selling Treasury securities to add money to, or drain it from, the banking system. When the Fed buys Treasuries, it's pushing money into the system — an easing move that tends to lower rates. When it sells, money comes out — a tightening move.

Rate Who pays whom Set by
Discount rate Bank borrows directly from the Fed Fed sets it directly
Federal funds rate Bank borrows overnight from another bank Target set by the Fed, achieved via open market operations
Interest rate (general) Broad borrowing cost across the economy Moves with the above, inversely affects bond prices

The business cycle

Peak Contraction Trough Expansion
The economy moves through these four phases in order, repeatedly — never skipping a stage.

Economic indicators are classified by their timing relative to the cycle: leading indicators change before the economy does (building permits, new orders — useful for forecasting), coincident indicators move in real time with the economy (GDP, industrial production), and lagging indicators confirm a trend after it's already happened (the unemployment rate is the classic example — it keeps rising for a while even after a recovery starts).

Two financial statements come up repeatedly: the balance sheet is a snapshot of assets, liabilities, and equity at one moment in time; the income statement shows revenue and expenses over a period. And stocks themselves get classified by how they behave across the cycle — cyclical stocks (autos, luxury goods) rise and fall with the economy, defensive stocks (utilities, consumer staples) hold up regardless, and growth stocks prioritize reinvestment and expansion over cycle-timing.

Two competing theories

Keynesian economics argues government should actively intervene — spend more in downturns, tax more in booms — to smooth the cycle out. Monetarist economics argues the better lever is controlling the money supply and otherwise letting markets self-correct. You just need to be able to match the label to the description, not defend either one.

International factors

The balance of payments is the net flow of money into and out of a country from trade, investment, and transfers. GDP measures output produced within a country's borders, while GNP measures output produced by that country's citizens and companies, wherever in the world they're operating. Exchange rates shift the relative value of foreign investments and directly affect how competitive a country's exports are.

1.5Bringing Securities to Market

Every security you'll ever trade in the secondary market started somewhere — an issuer decided to raise capital, and a structured process brought that security into existence. This is the primary market in motion.

The deal team

Investment bankers advise the issuer and structure the deal. Because a single firm rarely wants to absorb the full risk of a large offering alone, they form an underwriting syndicate — a group of firms that share the risk and split the distribution work. For municipal issuers, municipal advisors play a comparable advisory role, though they're regulated as a distinct category from underwriters.

Public vs. private — and the flavors of "new" stock

Term What's actually happening Who gets the proceeds
IPO Company sells stock to the public for the very first time The company
Follow-on offering An already-public company issues additional new shares The company
Secondary offering Existing shareholders sell shares they already hold The selling shareholders — not the company

A public offering is registered with the SEC and sold broadly. A private offering is exempt from full registration under Regulation D, typically limited to accredited investors, and comes with resale restrictions.

How the underwriter takes on risk

Method Who's on the hook for unsold shares
Firm commitment The underwriter — it buys the whole offering upfront and resells it, absorbing the risk itself
Best efforts The issuer — the underwriter just tries to sell as much as it can; anything unsold goes back
Exam Trap

"Firm commitment" sounds like the safer, more conservative option — it's actually the riskier one for the underwriter, precisely because the firm is committing its own capital to buy shares it might not be able to resell.

Shelf registrations

A shelf registration lets an issuer register a batch of securities with the SEC once, then sell pieces of that batch over time — up to three years — without re-registering for each sale. It's a flexibility tool: the issuer can time individual sales to favorable market conditions instead of committing to sell everything at once.

Disclosure documents

A prospectus is the core disclosure document for a public securities offering — it lays out the risks, the intended use of proceeds, and the issuer's financials. Municipal offerings use an equivalent document called an official statement. Certain packaged and municipal fund products (like 529 plans) use a program disclosure document instead.

Registration and exemptions

Public offerings generally must be registered with the SEC — but several exemptions exist. Regulation D exempts qualifying private placements from full registration. Rule 144A allows resale of certain unregistered securities to qualified institutional buyers without registration. On top of federal requirements, individual states layer on their own blue-sky registration rules.

Practice Exam

20 FINRA-style questions covering all sections of Chapter 1

Question 1 of 20
Up next
Chapter 2: Products & Risks

44% of the exam — the largest single chapter, covering equities, debt, options, packaged products, and the risks tied to each.