IntermediateProteinsMass SpectrometryMonoisotopic Mass
Significance:
Computing a protein's monoisotopic mass from its amino acid sequence is a routine calculation in mass-spectrometry-based proteomics — it's how software matches an observed peptide mass from a mass spec run back to a candidate protein sequence (peptide mass fingerprinting). This problem also introduces working with lookup tables of biochemical constants, a pattern you'll reuse constantly.
Statement
Given a protein string (using the standard 20 one-letter amino acid codes), compute its total **monoisotopic molecular weight** by summing the monoisotopic mass of each residue and adding the mass of one water molecule (18.01056 Da) to account for the two free termini. Round the final answer to **3 decimal places**.