-
Notifications
You must be signed in to change notification settings - Fork 0
/
III-algebraic.tex
1279 lines (1178 loc) · 53.3 KB
/
III-algebraic.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\chapter{Locally algebraic abelian representations}
\label{ch:iii}
\chaptermark{Locally algebraic representations}
In this Chapter, we define what it means for an abelian $\ell$-adic
representation to be \emph{locally algebraic} and we prove (cf.\
\ref{sec:III_23}) that such a representation, when rational, comes from a
linear representation of one of the groups $S_{\mathfrak{m}}$ of Chapter
\ref{ch:ii}.
When the ground field is a composite of quadratic extensions of $\Q$, any
rational semi-simple $\ell$-adic representation is \emph{ipso facto} locally
algebraic; this is proved in \S\ref{sec:III_3}, as a consequence of a result on
transcendental numbers due to Siegel and Lang.
In the local case, an abelian semi-simple representation is
locally algebraic if and only if it has a ``Hodge-Tate decomposition''.
This fact, due to Tate (College de France, 1966), is proved in the
Appendix, together with some complements.
\section{The local case}
\label{sec:III_1}
\subsection{Definitions}
\label{sec:III_11}
Let $p$ be a prime number and $K$ a finite extension of $\Q_p$; let $\TT =
\WRes_{K/\Q_p}(\GG_{m, K})$ be the corresponding algebraic torus over
\dpage
$\Q_p$ (cf.\ \citeauthor{43}~\cite{43}, Chap.~I).
\todo[section]{Belén.}
\subsection{Alternative definition of ``locally algebraic'' via Hodge-Tate
modules}
\label{sec:III_12}
Let us recall first the notion of a \strong{Hodge-Tate module} (cf.\ \cite{27},
\S 2); here $K$ is only assumed to be complete with respect to a discrete
valuation, with perfect residue field $k$ and $\char(K) = 0$, $\char(k) = p$.
Denote by $C$ the \emph{completion $\widehat{\algcl K}$ of the algebraic
closure} of $K$.
The group $G = \Gal(\algcl K/K)$ acts continuously on $K$. This action extends
continuously to $C$. Let $W$ be a $C$-vector space of finite dimension upon
which $G$ acts continuously and semi-linearly according to the formula
\[
s(cw) = s(c) \cdot s(w) \qquad
(s \in G, \, c \in C \text{ and } w \in W).
\]
Let $\chi\colon G \to U_p$ be the homomorphism of $G$ into the group $U_p =
\Z_p^\times$ of $p$-adic units, defined by its action on the $p^\nu$-th roots
of unity (cf.\ chap.~\ref{ch:i}, \ref{sec:I_12}):
\dpage
\[
s(z) = z^{\chi(s)} \qquad \text{if } s \in G \text{ and } z^{p^\nu} = 1.
\]
Define for every $i \in \Z$ the subspace
\[
W^i = \{ w \in W \mid sw = \chi(s)^i w \text{ for all } s\in G \}
\]
of $W$. This is a $K$-vector subspace of $W$. Let $W(i) = C \otimes_K W^i$.
This is a $C$-vector space upon which $G$ acts in a natural way (i.e.\ by the
formula $s(c \otimes y) = s(c) \otimes s(y)$). The inclusion $W^i \to W$
extends uniquely to a $C$-linear map $\alpha_i\colon W(i) \to W$, which
commutes with the action of $G$.
\begin{prop}[Tate]
Let $\coprod_{i\in \Z} W(i)$ be the direct sum of the $W(i)$. Let
$\alpha\colon \coprod_i W(i) \to W$ be the sum of the $\alpha_i$'s
defined above. Then $\alpha$ is injective.
\end{prop}
For the proof see \cite{27}, \S 2, prop.~4.
\begin{corp}
The $K$-spaces $W^i$ ($i \in \Z$) are of finite dimension.
They are linearly independent over $C$.
\end{corp}
\begin{mydef}\label{def:III_12_1}
The module $W$ is of \strong{Hodge-Tate type}\index{Hodge-Tate module}%
\index{Hodge-Tate type (module)}
if the homomorphism $\alpha\colon \coprod_{i\in\Z} W(i) \to W$ is an
isomorphism.
\end{mydef}
Let now $V$ be as in \ref{sec:III_11}, a vector space over $\Q_p$, of finite
dimension. Let $\rho\colon G \to \Aut(V)$ be a $p$-adic representation. Let $W
= C \otimes_{\Q_p} V$ and let $G$ act on $W$ by the formula
\dpage
\[
s(c\otimes v) = s(c) \otimes s(v) \qquad
s\in \Gamma, \; c\in C, \; v\in V.
\]
\begin{mydef}
The representation $\rho$ is of \strong{Hodge-Tate type}%
\index{Hodge-Tate representation}\index{Hodge-Tate type
(representation)} if the $C$-space $W = C \otimes_{\Q_p} V$ is of
Hodge-Tate type (cf.\ def.~\ref{def:III_12_1}).
\end{mydef}
\begin{ex}
Let $F$ be a $p$-divisible group of finite height (cf.\ \cite{26},
\cite{39}); let $T$ be its Tate module (\emph{loc. cit.}) and $V = \Q_p
\otimes T$. The group $G$ acts on $V$, and Tate has proved (\cite{39},
Cor.~2 to Th.~3) that this Galois module is of Hodge-Tate type; more
precisely, one has $W = W(0) \oplus W(1)$, where $W = C \otimes V$ as
above.
\end{ex}
\begin{thm}[Tate]
Assume $K$ is a finite extension of $\Q_p$ (i.e.\ its residue field is finite).
Let $\rho\colon G \to \Aut(V)$ be an abelian $p$-adic representation of $K$.
The following properties are equivalent:
\begin{enumerate}[(a)]
\item $\rho$ is locally algebraic (cf.\ \ref{sec:III_11}).
\item $\rho$ is of Hodge-Tate type and its restriction to the inertia group is
semi-simple.
\end{enumerate}
\end{thm}
For the proof, see the Appendix.
\section{The global case}
\subsection{Definitions}
\label{sec:III_21}
We now go back to the notations of Chap.~\ref{ch:ii}, i.e.\ $K$ denotes a number
field. Let $\ell$ be a prime number and let
\[
\rho \colon \Gal(\algcl{K}/K)^{\ab} \longrightarrow \Aut(V_\ell)
\]
be an abelian $\ell$-adic representation of $K$. Let $v \in M_K^0$ be a place of
$K$ of residue characteristic $\ell$ and let $D_v \subset
\Gal(\algcl{K}/K)^{\ab}$ be the corresponding decomposition group. This group
is a quotient of the local Galois group $\abcl{\Gal(\algcl{K_v}/K_v)}$ (there
two group are, in fact, isomorphic, but we do not need this here). Hence, we
get by composition an $\ell$-adic representation of $K_v$
\[\begin{tikzcd}[sep=large]
\rho_v \colon \abcl{\Gal(\algcl{K_v}/K_v)} \rar & D_v \rar["\rho"] &
\Aut(V_\ell).
\end{tikzcd}\]
\begin{mydef}
The representation $\rho$ is said to be \strong{locally algebraic} if all the
local representations $\rho_v$, with $p_v = \ell$, are locally algebraic (in the
sense defined in \ref{sec:III_11}, with $p = \ell$).
\end{mydef}
It is convenient to reformulate this definition, using the torus $T =
\WRes_{K/\Q} (\GG_{m, K})$ of Chap.~\ref{ch:ii},~\ref{sec:II_11}. Let
$\TT_{/\Q_\ell} = \TT \otimes_{\Q} \Q_\ell$ be the $\Q_\ell$-torus obtained
from $\TT$ by extending the ground field from $\Q$ to $\Q_\ell$. We have
\[
\TT_{/\Q_\ell}(\Q_\ell) = (K \otimes \Q_\ell)^{\times} = K_{\ell}^\times,
\]
where $K_\ell = K \otimes \Q_\ell$.
Let $I$ be the idèle group of $K$, cf.\ Chap.~\ref{ch:ii},~\ref{sec:II_21}. The
injection $K_\ell^\times \to I$, followed by the class field homomorphism $i
\colon I \to \abcl{\Gal(\algcl{K}/K)}$, define a homomorphism
\[
i_\ell \colon K_\ell^\times \longrightarrow \abcl{\Gal(\algcl{K}/K)}.
\]
\begin{prop}
The proposition $\rho$ is locally algebraic if and only if there exists an
algebraic morphism
\[
f \colon \TT_{/\Q_\ell} \longrightarrow \GL_{V_\ell}
\]
such that $\rho \circ i_\ell(x) = f(x^{-1})$ for all $x \in K_\ell^\times$
close enough to $1$.
\end{prop}
(Note that, as in the local case, the above condition determines $f$ uniquely;
one says it is the algebraic morphism \emph{associated with} $\rho$.)
Since $K \otimes_\Q \Q_\ell = \prod_{v \mid \ell} K_v$, we have
\[
\TT_{/\Q_\ell} = \prod_{v \mid \ell} T_v,
\]
where $T_v$ is the $\Q_\ell$-torus defined by $K_v$, cf.~\ref{III:sec_11}. The
proposition follow from this decomposition.
\subsubsection*{Exercise}
Give a criterion for local algebraicity analogous to the one of
Prop.~\ref{prop:III_11_2} of \ref{sec:III_11}.
\subsection{Modulus of a locally algebraic abelian representation}
\label{sec:III_22}
Let $\rho\colon \abcl{\Gal(\algcl K/K)} \to \Aut(V_\ell)$ be as above; by
composition with the class field homomorphism $i\colon I \to \abcl{\Gal(\algcl
K/K)}$, $\rho$ defines a homomorphism $\rho \circ i\colon I \to \Aut(V_\ell)$.
We assume that $\rho$ is locally algebraic and we denote by $f$ the associated
\dpage
algebraic morphism $\TT_{/\Q_\ell} \to \GL_{V_\ell}$.
\begin{mydef}
Let $\mathfrak{m}$ be a modulus (chap.~\ref{ch:ii}, \ref{sec:II_11}).
One says that $\rho$ is defined mod $\mathfrak{m}$ (or that
$\mathfrak{m}$ is a modulus of definition for $\rho$) if
\begin{enumerate}[(i)]
\item $\rho \circ i$ is trivial on $U_{v, \mathfrak{m}}$ when $p_v \ne
\ell$.
\item $\rho \circ i_\ell(x) = f(x^{-1})$ for \smash{$\displaystyle x
\in \prod_{v\mid\ell} U_{v, \mathfrak{m}}$}.
\end{enumerate}
\end{mydef}
(Note that $\prod_{v\mid\ell} U_{v, \mathfrak{m}}$ is an open subgroup of
$K_\ell^\times = \TT_{/\Q_\ell}(\Q_\ell)$.)
In order to prove the existence of a modulus of definition, we
need the following auxiliary result:
\begin{prop}\label{prop:III_22_1}
Let $H$ be a Lie group over $Q_\ell$ (resp.\ $\R$) and let
$\alpha$ be a continuous homomorphism of the idèle group $I$ into $H$.
\begin{enumerate}[(a)]
\item\label{prop:III_22a}
If $p_v \ne \ell$ (resp.\ $p_v \ne \infty$), the restriction of
$\alpha$ to $K$ is equal to 1 on an open subgroup of $K_v^\times$.
\item\label{prop:III_22b}
The restriction of $\alpha$ to the unit group $U_v$ of $K_v^\times$ is
equal to 1 for almost all $v$'s.
\end{enumerate}
\end{prop}
\begin{proof}
Part \ref{prop:III_22a} follows from the fact that $K_v^\times$ is a
$p_v$-adic Lie group and that a homomorphism of a $p$-adic Lie group
into an $\ell$-adic one is locally equal to 1 if $p \ne \ell$.
To prove \ref{prop:III_22b}, let $N$ be a neighborhood of 1 in $H$
which contains no finite subgroup except $\{ 1 \}$; the existence of
such an $N$ is classical for real Lie groups, and quite easy to prove
for $\ell$-adic ones. By definition of the idèle topology,
$\alpha(U_v)$ is contained in $N$ for almost all $v$'s. But
\ref{prop:III_22a} shows that, if $p_v \ne \ell$, the group
\dpage
$\alpha(U_v)$ is finite; hence $\alpha(U_v) = \{ 1 \}$ for almost all
$v$'s.
\end{proof}
\begin{corp}\label{cor:III_22}
Any abelian $\ell$-adic representation of $K$ is unramified outside a
finite set of places.
\end{corp}
This follows from \ref{prop:III_22b} applied to the homomorphism $\alpha$ of $I$
induced by the given representation, since the $\alpha(U_v)$ are known to be
the inertia subgroups.
% 2d by the given r
\begin{obs}
This does not extend to non-abelian representations (even solvable ones), cf.\ Exercise.
\end{obs}
\begin{prop}
Every locally algebraic abelian $\ell$-adic representation has a
modulus of definition.
\end{prop}
Let $\rho\colon \abcl{\Gal(\algcl K/K)} \to \Aut(V_\ell)$ be the given
representation and $f$ the associated morphism of $T_{/\Q_\ell}$ into
$\GL_{V_\ell}$. Let $X$ be the set of places $v \in M_K^0$, with $p_v \ne
\ell$, for which $\rho$ is ramified; the corollary~\ref{cor:III_22} to
Prop.~\ref{prop:III_22_1} shows that $X$ is finite. By
Prop.~\ref{prop:III_22_1}, \ref{prop:III_22a}, we can choose a modulus
$\mathfrak{m}$ such that $\rho \circ i\colon I \to \Aut(V_\ell)$ is trivial on
all the $U_{v, \mathfrak{m}}$, $v \in X$. Enlarging $\mathfrak{m}$ if
necessary, we can assume that $\rho \circ i_\ell(x) = f(x^{-1})$ for $x \in
\prod_{p_v = \ell} U_{v, \mathfrak{m}}$. Hence, $\mathfrak{m}$ is a modulus of
definition for $\rho$.
\begin{obs}
It is easy to show that there is a smallest modulus of definition for $\rho$;
it is called the \strong{conductor}\index{Conductor} of $\rho$.
\end{obs}
\subsubsection*{Exercise}
Let $z_1, \dots, z_n, \dots \in K^\times$. For each $n$, let $E_n$ be the
\dpage
subfield of $\algcl K$ generated by all the $\ell^n$-th roots of the element
$z_1 z_2^\ell \cdots z_n^{\ell^{n-1}}$.
\begin{enumerate}[a)]
\item Show that $E_n$ is a Galois extension of $K$, containing the $\ell^n$-th
roots of unity and that its Galois group is isomorphic to a subgroup of
the affine group $
\begin{psmallmatrix}
* & * \\
0 & 1
\end{psmallmatrix}
$ in $\GL(2, \Z/\ell^n\Z)$.
\item Let $E$ be the union of the $E_n$'s. Show that $E$ is a Galois extension
of $K$, whose Galois group is a closed subgroup of the affine group
relative to $\Z_\ell$.
\item Give an example where $E$ (and hence the corresponding 2-dimensional
$\ell$-adic representation) is ramified at all places of $K$.
\end{enumerate}
\subsection{Back to \texorpdfstring{$S_{\mathfrak{m}}$}{Sm}}
\label{sec:III_23}
Let $\mathfrak{m}$ be a modulus of $K$ and let
\[
\phi \colon S_{\mathfrak{m}/\Q_\ell} \longrightarrow \GL_{V_\ell}
\]
be a linear representation of $S_{\mathfrak{m}/\Q_\ell}$. Let
\[
\phi_\ell \colon \abcl{\Gal(\algcl K/K)} \longrightarrow \Aut(V_\ell)
\]
be the corresponding $\ell$-adic representation (cf.\ chap.~\ref{ch:ii},
\ref{sec:II_25}).
\begin{thm}\label{thm:III_23_1}
The representation $\phi_\ell$ is locally algebraic and defined mod
$\mathfrak{m}$. The associated algebraic morphism
\dpage
\[
f \colon \TT_{/\Q_\ell} \longrightarrow \GL_{V_\ell}
\]
is $\phi \circ \pi$, where $\pi$ denotes the canonical morphism of
$\TT$ into $S_{\mathfrak{m}}$ (cf.\ chap.~\ref{ch:ii},
\ref{sec:II_22}).
\end{thm}
This is trivial from the construction of $\phi_\ell$ as $\phi \circ
\varepsilon$ (chap.~\ref{ch:ii}, \ref{sec:II_25}) and the corresponding
properties of $\varepsilon_\ell$ (chap.~\ref{ch:ii}, \ref{sec:II_23}).
The converse of Theorem~\ref{thm:III_23_1} is true. We state it only for the
case of rational representations:
\begin{thm}
Let $\rho\colon \abcl{\Gal(\algcl K/K)} \to \Aut(V_\ell)$ be an abelian
$\ell$-adic representation of the number field $K$. Assume $\rho$ is
rational (chap.~\ref{ch:i}, \ref{sec:I_23}) and is locally algebraic
with $\mathfrak{m}$ as a modulus of definition (cf.\ \ref{sec:III_22}).
Then, there exist a $\Q$-vector subspace $V_0$ of $V_\ell$, with
$V_\ell = V_0 \otimes_\Q \Q_\ell$, and a morphism $\phi_0 \colon
S_{\mathfrak{m}} \to \GL_{V_\ell}$ of $\Q$-algebraic groups such that
$\rho$ is equal to the $\ell$-adic representation $\phi_\ell$
associated to $\phi_0$ (cf.\ chap.~\ref{ch:ii}, \ref{sec:II_25}).
\end{thm}
(The condition $V_\ell = V_0 \otimes_\Q \Q_\ell$ means that $V_0$ is a
\textquote{$\Q$-structure} on $V_\ell$, cf.\ Bourbaki Alg., chap.~II,
3\textsuperscript{rd} ed.)
\begin{proof}
Let $r \colon \TT_{/\Q_\ell} \to \GL_{V_\ell}$ be the algebraic
morphism associated with $\rho$. We have
\[
\rho\circ i(x) = r(x^{-1}) \qquad \text{for } x\in
K_\ell^\times \cap U_{\mathfrak{m}} = \prod_{v\mid\ell} U_{v,
\mathfrak{m}}
\]
Define a map $\psi \colon I \to \Aut(V_\ell)$ by
\dpage
\[
\psi(x) = \rho\circ i(x) \cdot r(x_\ell)
\]
where $x_\ell$ is the $\ell$\textsuperscript{th} component of the idèle
$x$.
\todo[bluetask]{¿Estandarizar notación $\vec x$ para idèles?}
One checks immediately that \emph{$\psi$ is trivial on
$U_{\mathfrak{m}}$ and coincides with $r$ on $K^\times$.}
Hence $r$ is trivial on $E_{\mathfrak{m}} = K^\times \cap
U_{\mathfrak{m}}$ and factors through an algebraic morphism
$r_{\mathfrak{m}} \colon T_{\mathfrak{m}/\Q_\ell} \to \GL_{V_\ell}$. By
the universal property
of the $\Q_\ell$-algebraic group $S_{\mathfrak{m}/\Q_\ell}$ (cf.\ chap.~\ref{ch:ii}, \ref{sec:II_13} and \ref{sec:II_22}),
there exists an algebraic morphism
\[
\phi \colon S_{\mathfrak{m}/\Q_\ell} \longrightarrow
\GL_{V_\ell}
\]
with the following properties:
\begin{enumerate}[(a)]
\item\label{thm:III_23_2a} The morphism
\begin{tikzcd}[cramped, sep=small]
T_{\mathfrak{m}/\Q_\ell} \rar &
S_{\mathfrak{m}/\Q_\ell} \rar["\phi"] & \GL_{V_\ell}
\end{tikzcd}
is $r_{\mathfrak{m}}$.
\item The map
\begin{tikzcd}[cramped, sep=small]
I \rar["\varepsilon"] & S_{\mathfrak{m}}(\Q_\ell)
\rar["\phi"] & \Aut(V_\ell)
\end{tikzcd}
is $\psi$.
\end{enumerate}
It is trivial to check that the $\ell$-adic representation
$\phi_\ell$ attached to $\phi$ as above coincides with $\rho$.
Indeed, if $a \in I$, we have (with the notations of chap.~\ref{ch:ii})
\begin{align*}
\phi_\ell\circ i(a) &= \phi(\varepsilon_\ell(a))
= \phi(\varepsilon(a))
\phi\big( \pi_\ell(a_\ell^{-1}) \big)
= \psi(a) \phi\big( \pi_\ell(a_\ell^{-1}) \big) \\
&= \rho\circ i(a) r(a_\ell)
\phi\big( \pi_\ell(a_\ell^{-1}) \big)
= \rho\circ i(a).
\end{align*}
since $\phi\circ\pi_\ell = r$ by \ref{thm:III_23_2a} above.
\dpage
Hence $\phi_\ell = \rho$; the fact that $\rho$ is \emph{rational}
then implies that \emph{$\phi$ can be defined over $\Q$}
(chap.~\ref{ch:ii}, \ref{sec:II_24}, Prop.), and this gives $V_0$ and
$\phi_0$.
\end{proof}
\begin{obs}
The subspace $V_0$ of $V_\ell$ constructed in the proof of the theorem
is \emph{not} unique; however, any other choice gives us a space of the
form $\sigma V_0$, where $\sigma$ is an automorphism of $V_\ell$
commuting with $\rho$. To a given $V_0$ corresponds of course a unique
$\phi$.
\end{obs}
\begin{cor}
For each prime number $\ell'$ there exists a unique (up to isomorphism)
$\ell'$-adic rational semi-simple representation $\rho$ of $K$,
compatible with $\rho$. It is abelian and locally algebraic. These
representations form a strictly compatible system (cf.\
chap.~\ref{ch:i}, \ref{sec:I_23}) with exceptional set contained in
$\Supp(\mathfrak{m})$. For an infinite number of $\ell'$,
$\rho_{\ell'}$ can be brought in diagonal form.
\end{cor}
\begin{proof}
The unicity of the $\rho_{\ell'}$, follows from the theorem of
chap.~\ref{ch:i}, \ref{sec:I_23}. For the existence, take
$\rho_{\ell'}$ to be the $\phi_{\ell'}$ associated to $\phi$ as
in chapter~\ref{ch:ii}, \ref{sec:II_25}. The remaining assertion
follows from the proposition in chap.~\ref{ch:ii}, \ref{sec:II_25}.
\end{proof}
\begin{cor}
The eigenvalues of the Frobenius elements $F_{v, \rho}$ ($v \notin
\Supp(\mathfrak{m})$, $p_v \ne \ell$) generate a finite extension of
$\Q$.
\end{cor}
This follows from the corresponding property of $\phi_\ell$, cf.\
chapter~\ref{ch:ii}, \ref{sec:II_25}, Remark~\ref{rmk:II_25_1}.
\subsection{A mild generalization}
\label{sec:III_24}
\todo[section]{Belén.}
\subsection{The function field case}
\label{sec:III_25}
The above constructions have a (rather elementary) analogue
for \emph{function fields of one variable over a finite field:}
Let $K$ be such a field, and let $p$ be its characteristic. If $\mathfrak{m}$
is a modulus for $K$ (i.e.\ a positive divisor) we define the subgroup
$U_{\mathfrak{m}}$ of the idèle group $I$ as in chap.~\ref{ch:ii},
\ref{sec:II_21}, and we put
\[
\Gamma_{\mathfrak{m}} = I/U_{\mathfrak{m}} K^\times.
\]
\dpage
The degree map $\deg\colon I \to \Z$ is trivial on $U_{\mathfrak{m}}$, hence defines an
exact sequence
\[\begin{tikzcd}
1 \rar & J_{\mathfrak{m}} \rar & \Gamma_{\mathfrak{m}} \rar & \Z \rar & 1.
\end{tikzcd}\]
One sees easily that the group $J_{\mathfrak{m}}$ is finite; moreover, it may
be interpreted as the group of rational points of the ``generalized Jacobian
variety defined by $\mathfrak{m}$''. If $\widehat{\Gamma}_{\mathfrak{m}}$
denotes the completion of r with respect to the topology of subgroups of finite
index, it is known (class field theory) that $\abcl{\Gal(\algcl K/K)} \cong
\invlim_{\mathfrak{m}} \widehat{\Gamma}_{\mathfrak{m}}$.
Let now $\rho\colon \abcl{\Gal(\algcl K/K)} \to \Aut(V_\ell)$ be an abelian
$\ell$-adic representation of $K$, with $\ell \ne p$. One proves as in
\ref{sec:III_22} that there exists a modulus $\mathfrak{m}$ such that $\rho$ is
trivial on $U_{\mathfrak{m}}$, i.e.\ such that $\rho$ may be identified with a
\emph{homomorphism of $\widehat{\Gamma}_{\mathfrak{m}}$ into $\Aut(V_\ell)$.}
Moreover
\begin{prop}
A homomorphism $\phi\colon \Gamma_{\mathfrak{m}} \to \Aut(V_\ell)$
can be extended to a continuous homomorphism of
$\widehat{\Gamma}_{\mathfrak{m}}$ if and only if there exists a lattice
of $V_\ell$ which is stable by $\rho(\Gamma_{\mathfrak{m}})$.
\end{prop}
The necessity follows from Remark~\ref{rmk:I_11_1} of chap.~\ref{ch:i},
\ref{sec:I_11}. The sufficiency is clear.
Note that, as in the number field case, we have Frobenius
elements and we can define the notion of \emph{rationality} of an $\ell$-adic
representation.
\begin{thm}
An abelian $\ell$-adic representation
\[
\phi \colon \widehat{\Gamma}_{\mathfrak{m}} \to \Aut(V_\ell)
\]
\dpage
of $K$ is rational if and only if $\Tr\phi(\gamma)$ belongs to $\Q$
for every $y \in \Gamma_{\mathfrak{m}}$.
\end{thm}
If $v \notin \Supp(\mathfrak{m})$, and if $f_v$ is a uniformizing parameter at
$v$, the image $F_v$ of $f_v$ in $\Gamma_{\mathfrak{m}}$ is the Frobenius
element of the Galois group $\widehat{\Gamma}_{\mathfrak{m}}$. Hence, if
$\Tr\phi$ takes rational values on $\Gamma_{\mathfrak{m}}$, the
characteristic polynomial of $\phi(F_v)$ has rational coefficients for all
$v \notin \Supp(\mathfrak{m})$ and $\phi$ is rational.
To prove the converse, note first that \v Cebotarev's theorem
(Chap.~\ref{ch:i}, \ref{sec:I_22}) is valid for $K$, if one uses a somewhat
weaker definition of equipartition. Hence, the Frobenius elements $F_v$ are
\emph{dense} in $\widehat{\Gamma}_{\mathfrak{m}}$. In particular, they generate
$\Gamma_{\mathfrak{m}}$, and, from this, one sees that $\Tr\rho(\gamma)$
belongs to some number field $E$. We can then construct an $E$-linear
representation $\phi\colon \Gamma_{\mathfrak{m}} \to \GL(n, E)$ with the same
trace as $\rho$, and the theorem follows from:
\begin{lem}
Let $\Gamma$ be a finitely generated abelian group, and $\phi\colon
\Gamma \to \GL(n, E)$ a linear representation of $\Gamma$ over a number
field $E$. Let $\Sigma$ be a subset of $\Gamma$, which is dense in
$\Gamma$ for the topology of subgroups of finite index. Assume that
$\Tr\phi(\gamma) \in \Q$ for all $\gamma \in \Sigma$. Then
$\Tr\phi(\gamma) \in \Q$ for all $\gamma \in \Gamma$.
\end{lem}
\begin{proof}
Since $\phi(\Gamma)$ is finitely generated, there is a finite $S$ of
places of $E$ such that all the elements of $\phi(\Gamma)$ are
$S$-integral matrices. If $\ell'$ is a prime number not divisible by
any element of $S$, the image of $\phi(\Gamma)$ in $\GL(n, E \otimes
\Q_{\ell'})$ is contained in a compact subgroup of $\GL(n, E \otimes
\Q_{\ell'})$; hence $\phi$ extends by continuity to
\dpage
\[
\widehat{\phi} \colon \widehat{\Gamma} \to \GL(n, E \otimes
\Q_{\ell'})
\]
where $\widehat{\Gamma}$ is the completion of $\Gamma$ for the topology
of subgroups of finite index. Since $\Sigma$ is dense in
$\widehat{\Gamma}$, it follows that $\Tr\widehat{\phi}(\hat\gamma)$
belongs to the adherence $\Q_{\ell'}$ of $\Q$ in $E \otimes \Q_{\ell'}$
for every $\hat\gamma \in \widehat{\Gamma}$. Hence, if $\gamma \in
\Gamma$, we have
\begin{equation}
\Tr \phi(\Gamma) \in E \cap \Q_{\ell'} = \Q.
\tqedhere
\end{equation}
\end{proof}
\subsubsection*{Exercises}
\begin{enumerate}[1)]
\item Let $\phi\colon \widehat{\Gamma}_{\mathfrak{m}} \to \Aut(V_\ell)$ be a
semi-simple $\ell$-adic representation of $\Gamma_{\mathfrak{m}}$. Show
the equivalence of:
\begin{enumerate}[(a)]
\item $\phi$ extends continuously to $\widehat{\Gamma}_{\mathfrak{m}}$.
\item For every $\gamma \in \Gamma_{\mathfrak{m}}$, the eigenvalues of
$\phi(\gamma)$ are units (in a suitable extension of
$\Q_\ell$).
\item There exists $\gamma \in \Gamma_{\mathfrak{m}}$, with
$\deg(\gamma) \ne 0$, such that the eigenvalues of
$\phi(\gamma)$ are units.
\item For every $\gamma \in \Gamma_{\mathfrak{m}}$, one has
$\Tr\phi(\gamma) \in \Z_\ell$.
\end{enumerate}
\item Let $\phi\colon \widehat{\Gamma}_{\mathfrak{m}} \to \Aut(V_\ell)$ be a
rational $\ell$-adic representation of $K$. Show that, for almost all
prime number $\ell'$, there is a rational $\ell'$-adic representation
of $K$ compatible with $\phi$. Show that this holds for all $\ell' \ne
p$ if and only if the following property is valid: for all $\gamma \in
\Gamma_{\mathfrak{m}}$, the coefficients of the characteristic
polynomial of $\phi(\gamma)$ are $p$-integers.
\end{enumerate}
\section{The case of a composite of quadratic fields}
\label{sec:III_3}
\dpage
\subsection{Statement of the result}
\label{sec:III_31}
\todo[section]{Belén.}
\subsection{A criterion for local algebraicity}
\label{sec:III_32}
\begin{prop}
Let $\rho\colon \abcl{\Gal(\algcl K/K)} \to \Aut(V_\ell)$ be a rational
semi-simple $\ell$-adic abelian representation of $K$. Assume that
there exists an integer $N \ge 1$ such that $\rho^N$ is locally
algebraic. Then $\rho$ is locally algebraic.
\end{prop}
\begin{proof}
\dpage
Since $\rho$ is semi-simple, it can be brought in diagonal form over a
finite extension of $\Q_\ell$, hence gives rise to a family $\{ \psi_1,
\dots, \psi_n \}$ of $n$ continuous characters $\psi_i\colon C_K \to
\algcl{\Q}_\ell^\times$, where $C_K$ is the idèle-class group of $K$,
and $n = \dim V_\ell$.
Let $\chi_1 = \psi_1^N, \dots, \chi_n = \psi_n^N$ be the corresponding
characters occurring in $\rho^N$. Since $\rho^N$ is locally algebraic,
to each $\chi_i^N$ corresponds an algebraic character $\chi_i^{\rm alg}
\in X(\TT)$ of the torus $\TT$ (here we identify $X(\TT)$ with
$\Hom(\TT_{/\algcl\Q_\ell}, \GG_{m, \algcl\Q_\ell})$, since
$\algcl\Q_\ell$ is algebraically closed). Each $\chi_i^{\rm alg}$ is of
the form $\prod_{\sigma \in \Gamma} [\sigma]^{n_\sigma(i)}$, where
$\Gamma$ is the set of embeddings of $K$ into $\algcl\Q_\ell$, cf.\
Chap.~\ref{ch:ii}, \ref{sec:II_11}. One has
\[
\chi_i(x) = \chi_i^{\rm alg}(x^{-1}) = \prod_{\sigma \in
\Gamma} \sigma(x)^{-n_\sigma(i)}
\]
for all $x \in K_\ell^\times$ close enough to 1.
\end{proof}
\begin{lem}
All the integers $n_\sigma(i)$, $1 \le i \le n$, $\sigma \in \Gamma$,
are divisible by $N$.
\end{lem}
\begin{proof}
Let $U$ be an open subgroup of $\algcl{\Q}_\ell^\times$ containing no
$N$\textsuperscript{th}-root of unity except 1, and let $\mathfrak{m}$
be a modulus of $K$ such that $\psi_i(x) \in U$ for all $x \in
U_{\mathfrak{m}}$ and $i = 1, \dots, n$; the existence of such an
$\mathfrak{m}$ follows from the continuity of $\psi_1, \dots, \psi_n$.
We take $\mathfrak{m}$ large enough so that:
\begin{enumerate}[a)]
\item It is a modulus of definition for $\rho^N$.
\item $\rho$ is unramified at all $v \in \Supp(\mathfrak{m})$, and the
corresponding Frobenius elements $F_{v, \rho}$ have a
characteristic polynomial with
\dpage
rational coefficients.
\end{enumerate}
Let $K_{\mathfrak{m}}$ be the abelian extension of $K$ corresponding to
the open subgroup $K^\times U_{\mathfrak{m}}$ of the idèle group $I$,
and let $L$ be a finite Galois extension of $\Q$ containing
$K_{\mathfrak{m}}$. Choose a prime number $p$ which is distinct from 1,
is not divisible by any place of $\Supp(\mathfrak{m})$, and splits
completely in $L$. Let $v$ be a place of $K$ dividing $p$, and let
$f_v$ be an idèle which is a uniformizing element at $v$ and is equal
to 1 elsewhere. The fact that $v$ splits completely in
$K_{\mathfrak{m}}$ (since it does in $L$) implies that $f_v$ is the
norm of an idèle of $K_{\mathfrak{m}}$, hence (by class-field theory)
belongs to $K^\times U_{\mathfrak{m}}$; this means that the prime ideal
$\mathfrak{p}_v$ is a principal ideal $(\alpha)$, with $\alpha \equiv 1
\mod{\mathfrak{m}}$ and $\alpha$ positive at all real places of $K$.
Let $x = \psi_i(f_v)$ and $y = \chi_i(f_v)$, so that $y = x^N$; these
are the Frobenius elements of $\psi_i$ and $\chi_i$ relative to $v$. By
definition of $\chi_i^{\rm alg}$. we have
\[
y = \chi_i^{\rm alg}(\alpha) = \prod_{\sigma \in \Gamma}
\sigma(\alpha)^{n_\sigma(i)}
\]
where $\alpha$ is as above.
Hence $y$ belongs to the subfield $\widetilde{L}$ of $\Q$ corresponding
to $L$ (this field is well defined since $L$ is a Galois extension of
$\Q$). Moreover, if $w_\sigma$ is any place of $L$ such that $w_\sigma
\circ \sigma$ induces $v$ on $K$, we have (as in chap.~\ref{ch:ii},
\ref{sec:II_34}):
\[
w_\sigma(y) = n_\sigma(i).
\]
Assume now that $n_\sigma(i)$ is not divisible by $N$. Then $x$, which
is an $N$\textsuperscript{th}-root of $y$, does not belong to
$\widetilde{L}$. Hence there is a
\dpage
non-trivial $N$\textsuperscript{th}-root of unity $z$ such that $x$ and
$zx$ are conjugate over $\widetilde{L}$, and \emph{a fortiori} over
$\Q$. Since the characteristic polynomial of $F_{v, \rho}$ has rational
coefficients, any coniugate over $\Q$ of an eigenvalue of $F_{v, \rho}$
is again an eigenvalue of $F_{v, \rho}$. Hence, there exists an index
$j$ such that
\[
\psi_j(f_v) = z\, x = z\, \psi_i(f_v).
\]
But $f_v \in K^\times U_{\mathfrak{m}}$ and all $\psi_j$ are trivial on
$K^\times$ and map $U_{\mathfrak{m}}$ into the open subgroup $U$ we
started with. Hence $z = \psi_j(f_v) \, \psi_i(f_v)^{-1}$ belongs to
$U$, and this contradicts the way $U_{\mathfrak{m}}$ has been chosen.
\end{proof}
\begin{proof}[ of the proposition]
Since the $n_\sigma(i)$ are divisible by $N$, there exist $\varphi_i
\in X(\TT)$ with $\varphi_i^N = \chi_i^{\rm alg}$. If $x \in
K_\ell^\times$, we have:
\[
\varphi_i(x^{-1})^N = \chi_i^{\rm alg}(x^{-1}) = \chi_i(x) =
\psi_i(x)^N
\]
if $x$ is close enough to 1. Hence $\varphi_i(x) \psi_i(x)$ is an
$N$\textsuperscript{th}-root of unity when $x$ is close enough to 1,
and, by continuity, it is equal to 1 in a neighbourhood of 1. Hence,
the restriction of $\rho$ to $K_\ell^\times$ is locally equal to
$\varphi^{-1}$, where $\varphi$ is the (algebraic) representation of
$\TT$ defined by the family $(\varphi_1, \dots, \varphi_n)$. The
representation $\varphi$, \emph{a priori} defined over $\algcl\Q_\ell$,
can be defined over $\Q_\ell$ (and even over $\Q$); this follows, for
instance, from the fact that the family $(\varphi_1, \dots, \varphi_n)$
is \emph{stable} under the action of $\Gal(\algcl\Q/\Q)$, since the
family $(\chi_1^{\rm alg}, \dots, \chi_n^{\rm alg})$ is.
Hence $\rho$ is locally algebraic.
\end{proof}
\subsection{An auxiliary result on tori}
\label{sec:III_33}
In \cite{15}, Lang proved that two exponential functions $\exp(b_1 z)$,
$\exp(b_2z)$, $b_1, b_2 \in \C$, which take algebraic values for at least three
$\Q$-linearly independent values of $z$, are multiplicatively dependent: the
ratio $b_1/b_2$ is a rational number. This had also been noticed by Siegel.
Lang proved the following $\ell$-adic analogue:
\begin{prop}\label{prop:III_33_1}
Let $E$ be a field containing $\Q_\ell$ and complete for a real valuation
extending the valuation of $\Q_\ell$. Let $b_1, b_2 \in E$ and let $\Gamma$ be
an additive subgroup of $E$. Assume:
\begin{enumerate}
\item $\Gamma$ is of rank at least 3 over $\Z$.
\item The exponential series $\exp(z) = \sum_{n=1}^{\infty} z^n/n!$
converges absolutely on $b_1 \Gamma$ and $b_2 \Gamma$.
\item For all $z \in \Gamma$ the elements $\exp(b_1z)$ and $\exp(b_2z)$ are
algebraic over $\Q$.
\end{enumerate}
Then $b_1$ and $b_2$ are linearly dependent over $\Q$ (i.e.\ $b_1/b_2$ belongs
to $\Q$ if $b_2 \ne 0$).
\end{prop}
For the proof, see \cite{15}, Appendix, or \cite{30}, \S 1.
We will apply this result to tori, taking for $E$ the completion
of $\algcl{\Q}_\ell$. We need a few definitions first:
\begin{enumerate}[a/]
\item Let $T$ be an $n$-dimensional torus over $\Q$, with character
group $X(T)$. As before, we identify $X(T)$ with the group of morphisms
of $T_{/E}$ into $\GG_{m, E}$. We say that \emph{$T$ is a sum of
one-dimensional tori} if there exist one-dimensional subtori $T_i$ of
$T$, $1 \le i \le n$, such that the sum map $T_1 \times \cdots \times
T_n \to T$ is surjective (and hence has a finite kernel). An equivalent
condition is:
\begin{displayquote}
\slshape
$X(T) \otimes \Q$ is a direct sum of one-dimensional
\dpage
subspaces stable by $\Gal(\algcl\Q/\Q)$.
\end{displayquote}
\item Let $f$ be a continuous homomorphism of $T(\Q_\ell)$ into $E$. We say
that $f$ is \strong{locally algebraic}\index{Locally algebraic
(homomorphism)} if there is a neighbourhood $U$ of 1 in the $\ell$-adic
Lie group $T(\Q_\ell)$, and an element $\varphi \in X(T)$ such that
$f(x) = \varphi(x)$ for all $x \in U$. We say that $f$ is
\strong{almost locally algebraic}\index{Almost locally algebraic
(homomorphism)} if there is an integer $N \ge 1$ such that $f^N$ is
locally algebraic.
\item Let $S$ be a finite set of prime numbers, and, for each $p \in S$, let
$W_p$ be an open subgroup of $T(\Q_p)$; denote by $W$ the family
$(W_p)_{p\in S}$.
\end{enumerate}
Let $T(\Q)_W$ be the set of elements $x \in T(\Q)$ whose images in
$T(\Q_p)$ belong to $W$ for all $p \in S$; this is a subgroup of $T(\Q)$.
With these notations, we have:
\begin{prop}\label{prop:III_33_2}
Let $f\colon T(\Q_\ell) \to E^\times$ be a continuous homomorphism. Assume:
\begin{enumerate}[(a)]
\item There exists a family $W = (W_p)_{p\in S}$ such that $f(x)$ is
algebraic over $\Q$ for all $x \in T(\Q)_W$.
\item\label{item:III_33_2b}
$T$ is a sum of one-dimensional tori.
\end{enumerate}
Then $f$ is almost locally algebraic.
\end{prop}
\begin{proof}
\begin{enumerate}[i)]
\item\label{item:III_33_2i}
We suppose first that $T$ is \emph{one-dimensional}, and we denote by
$\chi$ a generator of $X(T)$. If $\chi$ is invariant by
$\Gal(\algcl\Q/\Q)$, $T$ is isomorphic to $\GG_m$ and $T(\Q) \cong
\Q^\times$. If not, $\Gal(\algcl\Q/\Q)$ acts on $X(T)$ \emph{via} a group of
order 2, corresponding to some quadratic
\dpage
extension $F$ of $\Q$; the character $\chi$ defines an isomorphism of
$T(\Q)$ onto the group $F_1^\times$ of elements of $F$ of norm 1. In both
cases, one sees that $T(\Q)$ is an abelian group of \emph{infinite
rank} (for a more precise result, see Exercise below). On the other
hand, each quotient $T(\Q_p)/W_p$ is a finitely generated abelian group
of rank $\le 1$. Hence $T(\Q)/T(\Q)_W$ is finitely generated, and this
implies that $T(\Q)_W$ is also of \emph{infinite rank}.
Since $T(\Q_\ell)$ is an $\ell$-adic Lie group of dimension 1, it is
locally isomorphic to the \emph{additive group} $\Q_\ell$. This means
that there exists a homomorphism
\[
e \colon \Z_\ell \longrightarrow T(\Q_\ell)
\]
which is an isomorphism of $\Z$ onto an open subgroup of $T(\Q_\ell)$.
By composition we get two continuous homomorphisms
\[
f \circ e\colon \Z_\ell \longrightarrow E^\times, \qquad
\chi \circ e\colon \Z_\ell \longrightarrow E^\times.
\]
But any continuous homomorphism of $\Z$ into $E^*$ is locally an
exponential. This implies that, after replacing $\Z_\ell$ by $\ell^m
\Z_\ell$ if necessary, there exist $b_1, b_2 \in E$ such that
\[
f \circ e(z) = \exp(b_1 z), \qquad
\chi\circ e(z) = \exp(b_2 z),
\]
with absolute convergence of the exponential series.
Let now $\Gamma$ be the set of elements $z \in \Z_\ell$ such that $e(z)
\in T(\Q)_W$. Since $T(\Q_\ell)/e(\Z_\ell)$ is finitely generated, and
$T(\Q)_W$ is of infinite rank, $\Gamma$ is of infinite rank. If $z \in
\Gamma$, $e(z)$
\dpage
belongs to $T(\Q)_W$, hence $f \circ e(z)$ is algebraic over $\Q$; the
same is true for $\chi\circ e(z)$ since $\chi$ maps $T(\Q)$ either into
$\Q^\times$ or into the group $F$ defined above.
Proposition~\ref{prop:III_33_1} then shows that $b_1/b_2$ is rational.
This means that some integral power $f^N$ of $f$, with $N \ge 1$, is
locally equal to an integral power of $\chi$, hence $f$ is \emph{almost
locally algebraic}.
\item \emph{General case.} Write $T = T_1 \cdots T_n$ where $T_1, \dots, T_n$
are one-dimensional subtori of $T$. Since $X(T) \otimes \Q$ is the
direct sum of the $X(T_i) \otimes \Q$, it is enough to show that, for
all $i$, the restriction $f_i$ of $f$ to $T_i(\Q_\ell)$ is almost
locally algebraic. But we may choose open subgroups $W_{i, p}$ of
$T_i(\Q_p)$ such that $W_{1,p} \cdots W_{n,p} \subset W_p$. If we put
$W_i = (W_{i,p})_{p\in S}$, we then see that $f_i$ takes algebraic
values on $T_i(\Q)_{W_i}$, hence is almost locally algebraic by
\ref{item:III_33_2i} above. \qedhere
\end{enumerate}
\end{proof}
\begin{obs}
If one could suppress condition \ref{item:III_33_2b} from
Prop.~\ref{prop:III_33_2}, all the results of this \S{} would extend to
arbitrary number fields. This would be possible if one had a
sufficiently strong $n$-dimensional version of
Prop.~\ref{prop:III_33_1} above; the one given in \cite{30}, \S 2 does
not seem strong enough (it requires density properties which are
unknown in the case considered here). $\to$ [This has been done by
Waldschmidt: see \cite{63}, \cite{83}.]
\end{obs}
\subsubsection*{Exercise}
Let $T$ be a non-trivial torus over $\Q$. Show that $T(\Q)$ is the direct sum
of a finite group and a free abelian group of infinite rank.
\subsection{Proof of the theorem}
\label{sec:III_34}
\todo[section]{Belén.}
\begin{subappendices}
\section{Hodge-Tate decompositions and locally algebraic representations}
\label{sec:III_App}
Let $K$ be a field of characteristic zero, complete with respect
to a discrete valuation and with perfect residue field $k$ of
characteristic $p > 0$. In this Appendix we deal with Hodge-Tate
decomposition of $p$-adic abelian representations of $K$.
Sections \ref{sec:III_A1} and \ref{sec:III_A2} give invariance properties of
\dpage
these decompositions under ground field extensions. Special characters of
$\Gal(\algcl K/K)$ are defined in \ref{sec:III_A4}; they are closely connected
both with Hodge-Tate modules (\ref{sec:III_A4} and \ref{sec:III_A5}) and local
algebraicity (\ref{sec:III_A6}). The proof of Tate's theorem (cf.\
\ref{sec:III_12}) is given in the last section.
\subsection{Invariance of Hodge-Tate decompositions}
\label{sec:III_A1}
Let $C$ be the completion of $\algcl K$ (cf.\ \ref{sec:III_12}); the group
$\Gal(\algcl K/K)$ acts continuously on $C$. Let $\chi$ be the character of
$\Gal(\algcl K/K)$ into the group of $p$-adic units defined in
chap.~\ref{ch:i}, \ref{sec:I_12}. Let $K' / K$ be a subextension of $\algcl K/
K$ on which the valuation $\overline{v}$ of $\algcl K$ is discrete; this means
that $K'$ is a finite extension of an unramified one of $K$. Let $\widehat{K'}$
denote the closure of $K'$ in $C$.
Let now $W$ be a finite dimensional $C$-vector space on which $\Gal(\algcl
K/K)$ acts continuously and semi-linearly (see \ref{sec:III_12}). As before, we
denote by $W^n$ (resp.\ $W^n_{K'}$) the $K$- (resp.\ $\widehat{K'}$-)vector
space defined by
\begin{multline*}
W^n = \{ w \in W \mid s(w) = \chi(s)^n w \text{ for all } s \in
\Gal(\algcl K / K) \\
\text{(resp.\ $s \in \Gal(\algcl K / K')$)} \}
\end{multline*}
Let $W(n) = C \otimes_K W^n$ and $W(n)' = C \otimes_{\widehat{K'}} W^n_{K'}$.
Identifying the modules $W(n)$ and $W(n)'$ with their canonical images in $W$,
we prove
\begin{thm}\label{thm:III_A1_1}
The canonical map $\widehat{K'} \otimes_K W^n \to W^n_{K'}$ is a
$\widehat{K'}$-isomorphism.
\end{thm}
\begin{cor}
The Galois modules $W(n)$ and $W(n)'$ are equal.
\dpage
\end{cor}
Indeed, Theorem~\ref{thm:III_A1_1} shows that $W^n$ and $W^n_{K'}$, generate
the same $C$-vector subspace of $W$.
\begin{cor}\label{cor:III_A1_12}
The Galois module $W$ is of Hodge-Tate type over $K$ if and only if it
is so over $\widehat{K'}$.
\end{cor}
\begin{proof}[ of Theorem~\ref{thm:III_A1_1}]
Note first that replacing the action of $\Gal(\algcl K/K)$ on $W$ by
$(s,w) \mapsto \chi(s)^{-i}sw$, $i \in \Z$, just changes $W^n$ to
$W^{n+i}$. This shifting process reduces the problem to the case $n =
0$; in that case, $W^n$ (resp.\ $W^n_{K'}$) is the set of elements of
$W$ which are invariant under $\Gal(\algcl K/K)$ (resp.\ under
$\Gal(\algcl K/K')$). Note also that the injectivity of $\widehat{K'}
\otimes W^0 \to W^0_{K'}$ is trivial, since we know that $C \otimes_K
W^0 \to W$ is injective (cf.\ \ref{sec:III_12}).
On the other hand, an easy up-and-down argument shows that one can
assume $K'/K$ to be either \emph{finite Galois} or \emph{unramified
Galois}. In both cases, since $\Gal(\algcl K/K')$ acts trivially on
$W^0_{K'}$, we have a semi-linear action of $\Gal(K'/K)$ on $W_{K'}^0$.
When $K'/K$ is finite, it is well known that this implies that
$W_{K'}^0$, is generated by the elements invariant by $\Gal(K'/K)$,
i.e.\ by $W^0$ (this is a non-commutative analogue of Hilbert's
``Theorem 90'', cf.\ for instance \cite[159]{29}).
Let now $K'/K$ be unramified Galois and let $G$ be its Galois group.
Let $\widehat{\mathcal{O}'}$ denote the ring of integers of
$\widehat{K'}$. Let $\Lambda$ be an $\widehat{\mathcal{O}'}$-lattice of
$W_{K'}^0$ (i.e.\ a free $\widehat{\mathcal{O}'}$-submodule of
$W_{K'}^0$ of the same rank as $W_{K'}^0$). Since $G$ acts continuously
on $W_{K'}^0$, the stabilizer in $G$ of $\Lambda$ is open, hence of
finite index, and the lattice $\Lambda$ has finitely many transforms.
\dpage
The sum $\Lambda^0$ of these transforms is invariant by $G$. Let $e_1,
\dots, e_N$ be a basis of $\Lambda^0$. Let $s \in G$. Then
\[
s(e_j) = \sum_{i=1}^{N} a_{ij}(s) e_i,
\qquad a_{ij} \in \widehat{\mathcal{O}'}
\]
and the matrix $a(s) = (a_{ij}(s))$ belongs to $\GL(N,
\widehat{\mathcal{O}'})$. We have $a(st) = a(s) \, s(a(t))$; this means
that $a$ is a \emph{continuous $1$-cocycle on $G$ with values in
$\GL(N, \widehat{\mathcal{O}'})$}. Recall that two such cocycles $a$
and $a'$ are said to be cohomologous if there exists $b \in \GL(N,
\widehat{\mathcal{O}'})$ such that $a'(s) = b^{-1} a(s) \, s(b)$ for
all $s \in G$. This is an equivalence relation on the set of cocycles
and the corresponding quotient space is denoted by $H^1(G, \GL(N,
\widehat{\mathcal{O}'}))$. In fact:
\begin{lem}
$H^1(G, \GL(N, \widehat{\mathcal{O}'})) = \{ 1 \}$.
\end{lem}
Assuming the lemma, the proof of the theorem is concluded as follows.
Since $a(s)$ is cohomologous to $1$, there exists $b \in \GL(N,
\widehat{\mathcal{O}'})$ such that $b = a(s) \, s(b)$ for all $s \in
G$. If $b = (b_{ij})$, define a new basis $e_1^\prime, \dots,
e_N^\prime$ of $W^0_{K'}$ by
\[
e_j^\prime = \sum_{i=1} b_{ij} e_i.
\]
Using the identity $b = a(s) \, s(b)$, one sees that $e_1^\prime,
\dots, e_N^\prime$ are invariant under $G$, hence belong to $W^0$; this
proves the surjectivity of $\widehat{K'} \otimes_K W^0 \to W_{K'}^0$.
\end{proof}
\begin{proof}[ of the lemma]
Let $\pi$ be a uniformizing element of $\widehat{\mathcal{O}'}$. Filter
\dpage
the ring $A = \GL(N, \widehat{\mathcal{O}'})$ by means of $A_n = \{a
\in A \mid a \equiv 1 \mod{\pi^n} \}$. We get $A/A_1 \cong GL(N, k' /
k)$, where $k' / k$ is the residue field extension of $K' / K$.
Moreover, for $n \ge 1$, there is an isomorphism \label{errata:An+k}
$A_n / A_{n+1} \cong \Mat_N(k')$, where $\Mat_N(k')$ is the additive
group of $N \times N$ matrices with coefficients in $k'$. The lemma
follows now from the triviality of $H^1(G, \GL(N, k'))$ and $H^1(G,
\Mat_N(k'))$, where now $k'$ is endowed with the discrete topology (so
this is ordinary Galois cohomology, cf.\ \cite[158-159]{29}).
\end{proof}
\subsection{Admissible characters}
\label{sec:III_A2}
Let $G = \Gal(\algcl K/K)$ and let $\varphi\colon G \to K^\times$ be a
continuous homomorphism.
\begin{mydef}
The character $\varphi$ is said to be \strong{admissible}%
\index{Admissible (character)} (notation: $\varphi \sim 1$) if there
exists $x \in C$, $x \ne 0$, such that $s(x) = \varphi(s)\, x$ for all
$s \in G$.
\end{mydef}
\begin{obs}
\begin{enumerate}
\item The admissible characters form a subgroup of the group of all characters
of $G$ with values in $K^\times$; if $\varphi$, $\varphi'$ are two
characters, we write $\varphi \sim \varphi'$ if $\varphi^{-1} \varphi'
\sim 1$.
\item Let $H^1(G, C^\times)$ be the first cohomology group of $G$ with values
in $C$ (cohomology being defined by \emph{continuous} cochains, as in
\ref{sec:III_A1}). A continuous character $\varphi \colon G \to
K^\times$ is a 1-cocycle, hence defines an element $\overline{\varphi}$
of $H^1(G, C^\times)$. One has $\overline{\varphi} =
\overline{\varphi'}$ if and only if $\varphi \sim \varphi'$.
\item\label{rmk:III_A2_3}
Define a new action of $G$ on $C^\times$ by means of