I have a very long equation that begins and ends with a curly brace. I would like it to extend over multiple lines. I tried the following
\documentclass[]{article}
\usepackage{amssymb}
\usepackage{amsmath}
\begin{document}
\begin{eqnarray} \label{eq:cohensDCSs3}
\hat{\mathcal{A}}_c^{\pm}= \left {\bf{s}: \ \nonumber
\pm \frac{k}{\sqrt{N}}\right}
\end{eqnarray}
\end{document}
and get the following error message
! Extra }, or forgotten \right.
<template> }
$\@eqnsel \endtemplate
l.9 ...l{A}}_c^{\pm}= \left \{\bf{s}: \\ \nonumber
?
I do not get this error message if I leave out the "\\ \nonumber" part.
Edit.
Thank you for the replies. But I wanted a large brace at the beginning of the first line and a large brace at the end of the last line. The following is what I want.

The following code does what I want. The braces expand with the equation which begins and ends with a brace. I don't want any braces to span all of the lines.
\documentclass[]{article}
\usepackage{amssymb}
\usepackage{amsmath}
\begin{document}
\begin{eqnarray}
\hat{\mathcal{A}}_c^{\pm}= \left\{\bf{s}: \right. \\ \nonumber
\left. \pm \frac{k}{\sqrt{N}}\right\}
\end{eqnarray}
\end{document}

\left,\rightpairs of delimiter work over multiple lines? – Werner Sep 21 '21 at 16:34{placed to the right of where the second line starts, so I don't think that's what you really want. Bernard has a nice answer. Is that what you want? If not, why not? You can also use sizing commands like\biggland\biggrto adjust the\{and\}. – Teepeemm Sep 21 '21 at 20:56