\documentclass[12pt]{article}
\usepackage[sc]{mathpazo}
\topmargin=-.5in
\headsep=0.2in
\oddsidemargin=-.1in
\textwidth=6.7in
\textheight=9.2in
\footskip=.5in
%%
\usepackage{fancyhdr,fancybox}
\usepackage{amssymb,amsmath,amsthm}
\usepackage{url}
\usepackage{hyperref}
\usepackage{latexsym}
\usepackage{enumitem} % Clashes with \usepackage{enumerate}
\usepackage{graphicx}
\graphicspath{{./}{figs/}{../figs}{../}}
\usepackage{tikz}

%% ------ Custom solution environment ---------
\usepackage{comment}
\specialcomment{solution}
  {\par\noindent\textbf{Solution.}\ } 
  {\par}                              
%\excludecomment{solution}  % COMMENT/UNCOMMENT this to show/hide solutions

%%----Custom Exercise environment-----
\newcounter{exer}    %% Make a special counter just for exercises
%\numberwithin{exer}{section}
\theoremstyle{definition}
\newtheorem{exmp}[exer]{Problem}
\newenvironment{exercise}[1][]
{\begin{exmp}[#1]}
{\end{exmp}}

%%------------------------------------

\def\<{\langle}
\def\>{\rangle}
\def\longto{\longrightarrow}
\newcommand{\C}{\mathbb{C}} %% Some people prefer \CC or \CCC or \bbC
\newcommand{\F}{\mathbb{F}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\Z}{\mathbb{Z}}
\def\And{\wedge}
\def\Or{\vee}
\def\Not{\neg}
%% \def\Not[1]{\overline{#1}}  %% Uncomment this for an alternative
\newcommand{\Red}[1]{\textcolor{red}{#1}}
\newcommand{\Blue}[1]{\textcolor{blue}{#1}}
\newcommand{\vv}[2]{\begin{bmatrix} #1 \\ #2 \end{bmatrix}}
\newcommand{\vvv}[3]{\begin{bmatrix} #1 \\ #2 \\ #3 \end{bmatrix}}
\newcommand{\vvvv}[4]{\begin{bmatrix} #1 \\ #2 \\ #3 \\ #4 \end{bmatrix}}
\newcommand{\ceil}[1] {\left\lceil #1 \right\rceil}
\newcommand{\floor}[1] {\left\lfloor #1 \right\rfloor}
\DeclareMathOperator{\lcm}{lcm}
\DeclareMathOperator{\Span}{Span}
\DeclareMathOperator{\Trace}{tr}
\def\normal{\lhd}
\def\normaleq{\unlhd}
\def\nnormal{\ntriangleleft}
\def\nnormaleq{\ntrianglelefteq}

%% For vector and matrices
\def\A{\bold{A}}
\def\B{\bold{B}}
\def\I{\bold{I}}
\def\J{\bold{J}}
\def\P{\bold{P}}
\def\0{\bold{0}}
\def\a{\bold{a}}
\def\b{\bold{b}}
\def\c{\bold{c}}
\def\e{\bold{e}}
\def\p{\bold{p}}
\def\q{\bold{q}}
\def\t{\bold{t}}
\def\u{\bold{u}}
\def\v{\bold{v}}
\def\w{\bold{w}}
\def\x{\bold{x}}


%% Put these after \begin{solution}, as necessary
\newcommand\AIpolish{\textbf{(p)}\; }
\newcommand\AIminor{\textbf{(m)}\; }
\newcommand\AImajor{\textbf{(M)}\; }
\newcommand\AIpolishminor{\textbf{(p,m)}\; }
\newcommand\AIpolishmajor{\textbf{(p,M)}\; }


\renewcommand{\footrulewidth}{1pt}
\setlength{\headheight}{15pt}
\lhead{{\sf Summer Bridge Course (Algebra)}: Tuesday July 7}
\chead{}\rhead{\thepage}
\lfoot{Due Thursday, July 9 2026}
\cfoot{}\rfoot{Written by M.~Macauley}
\pagestyle{fancy}


\begin{document}

%\(\;\) \vspace{-4mm}

\noindent \textbf{Topics}: Vector spaces and subspaces \\

\noindent \textbf{Do}: Answer the following questions.


%%--------------------------------------------------------------------- 

%% HW 4, Problem 1
\begin{exercise}
\item Let \(X\) be a vector space over a field \(K\). Let \(0\) be the zero element of \(K\), and \(\0\) the zero element of \(X\). Using only the definitions of a group, vector space, and field, carefully prove the following.
  \begin{enumerate}[label=(\roman*)]
  \item \((-1)x=-x\) for all \(x\in X\).
  \item For every \(k\in K\) and \(x\in X\), if \(kx=\0\), then \(k=0\) or \(x=\0\). \\
  \end{enumerate}
\end{exercise}

%%--------------------------------------------------------------------- 

%% HW 4, Problem 2
\begin{exercise}
  Let \(X\) be a vector space.
  \begin{enumerate}[label=(\roman*)]
  \item Prove that for any collection \(\big\{Y_\alpha\mid \alpha\in
    A\big\}\) of subspaces, \(\bigcap_{\alpha} Y_\alpha\) is a
    subspace.
  \item Prove that for any subset \(S\subseteq X\) of a vector
    space,
    \[
    \Span(S)=\bigcap_{S\subseteq Y_\alpha\leq X}Y_\alpha.
    \]
    Here, the intersection is taken over all subspaces \(Y_\alpha\) of
      \(X\) that contain \(S\). \\
  \end{enumerate}
\end{exercise}
    
    %%---------------------------------------------------------------------

%% HW 4, Problem 3
\begin{exercise}
  \(Y\) and \(Z\) be subspaces of a vector space \(X\), with \(Y+Z=X\). That is,
  \[
  Y+Z:=\big\{y+z\mid y\in Y,\,z\in Z\big\}=X.
  \]
  Prove that the following are equivalent:
  \begin{enumerate}[label=(\roman*)]
  \item \(Y\cap Z=\{0\}\).
  \item Every \(x\in X\) can be written \emph{uniquely} as \(x=y+z\), for some \(y\in Y\) and \(z\in Z\). \\
  \end{enumerate} 
\end{exercise}

%%---------------------------------------------------------------------  

\end{document}
