I was reading a book that uses sequent calculus (and calls than Natural deduction ) and that mentions as rules
$$\frac{X,A\vdash B}{X\vdash A\to B}$$
and
$$ \frac{\begin{align}X &\vdash A\to B\\ Y& \vdash A\end{align}}{X,Y\vdash B} $$
I wanted to rewrite proof from this book to an original sequent calculus proof in the original sequent calculus (Gentzens LK system)
http://en.wikipedia.org/wiki/Sequent_calculus
http://gdz.sub.uni-goettingen.de/dms/resolveppn/?PPN=GDZPPN002375508
the rule $\to I$ above is in Gentzen's system FES or in modern language $\to R$
but the rule $\to E$ does not exist
How to derive $\to E$ in LK?
One method could be to use cut. (Forgive me, as far as I know, mathSE doesn't have a good way to type out sequent proof trees, so I'll just have to describe the tree.)
Suppose in your proof, you've derived both $X \vdash A \rightarrow B$ and $Y \vdash A$. Then using $\wedge R$ (and commutativity), you can derive $X, Y \vdash A \wedge (A \rightarrow B)$. Now, in a separate tree, start with the identities $A \vdash A$ and $B \vdash B$. Then, using $\rightarrow L$ (where $\Sigma$ and $\Delta$ are empty), we get $A, A \rightarrow B \vdash B$. By $\wedge L$ and contraction, you can then derive $A \wedge (A \rightarrow B) \vdash B$ (to do this, use $\wedge L_1$ to get $A \wedge (A \rightarrow B), A \rightarrow B \vdash B$, and then $\wedge L_2$ to get $A \wedge (A \rightarrow B), A \wedge (A \rightarrow B) \vdash B$; then use contraction). Finally, using cut on these two trees (where again $\Sigma$ and $\Delta$ are empty), you get $X, Y \vdash B$.
Now of course, by Cut Elimination, one could get a proof without using cut, but this proof tree is relatively simple because of the use of cut. Commutativity is needed if you want the order to be $X, Y$, though I imagine this wasn't a main issue. Contraction was used, but if you have an intensional conjunction in your system (as logics which reject contraction sometimes do), then the proof can be easily modified. So this proof still holds in quite a few Gentzen systems apart from LK.