Fundamentals of Communication Systems 1st Edition Proakis Solutions Manual download
Fundamentals of Communication Systems 1st Edition Proakis Solutions Manual download
https://testbankfan.com/product/fundamentals-of-communication-
systems-1st-edition-proakis-solutions-manual/
https://testbankfan.com/product/fundamentals-of-communication-
systems-2nd-edition-proakis-solutions-manual/
https://testbankfan.com/product/contemporary-communication-
systems-1st-edition-mesiya-solutions-manual/
https://testbankfan.com/product/introduction-to-communication-
systems-1st-edition-madhow-solutions-manual/
https://testbankfan.com/product/communication-systems-analysis-
and-design-1st-edition-stern-solutions-manual/
Wireless Communication Networks and Systems 1st Edition
Beard Solutions Manual
https://testbankfan.com/product/wireless-communication-networks-
and-systems-1st-edition-beard-solutions-manual/
https://testbankfan.com/product/principles-of-electronic-
communication-systems-4th-edition-frenzel-solutions-manual/
https://testbankfan.com/product/fundamentals-of-database-
systems-6th-edition-elmasri-solutions-manual/
https://testbankfan.com/product/fundamentals-of-information-
systems-8th-edition-stair-solutions-manual/
https://testbankfan.com/product/fundamentals-of-information-
systems-9th-edition-stair-solutions-manual/
Chapter 7
Problem 7.1
The following MATLAB script finds the quantization levels as (−5.1865, −4.2168, −2.3706, 0.7228, −0.4599,
1.5101, 3.2827, 5.1865).
echo on ;
a=[−10,−5,−4,−2,0,1,3,5,10];
for i=1:length(a)−1
y(i)=centroid(’normal’,a(i),a(i+1),0.001,0,1);
echo off ;
end
In this MATLAB script the MATLAB function centroid.m given next finds the centroid of a region.
function y=centroid(funfcn,a,b,tol,p1,p2,p3)
% CENTROID Finds the centroid of a function over a region.
% Y=CENTROID(’F’,A,B,TOL,P1,P2,P3) finds the centroid of the
% function F defined in an m-file on the [A,B] region. The
% function can contain up to three parameters, P1, P2, P3.
% tol=the relative error.
args=[ ];
for n=1:nargin−4
args=[args,’,p’,int2str(n)]; 10
end
args=[args,’)’];
funfcn1=’x_fnct’;
y1=eval([’quad(funfcn1,a,b,tol,[ ],funfcn’,args]);
y2=eval([’quad(funfcn,a,b,tol,[ ]’,args]);
y=y1/y2;
MATLAB functions xfunct.m and normal.m that arse used in centroid.m are given next
args=[ ];
for nn=1:nargin−2
args=[args,’,p’,int2str(nn)];
end
args=[args,’)’] ;
y=eval([funfcn,’(x’,args,’.*x’ ]); 10
function y=normal(x,m,s)
143
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
% FUNCTION y=NORMAL(x,m,s)
% Gaussian distribution
% m=mean
% s=standard deviation
y=(1/sqrt(2*pi*sˆ2))*exp(−((x−m).ˆ2)/(2*sˆ2));
Problem 7.2
1) By the symmetry assumption the boundaries of the quantization regions are 0, ±1, ±2, ±3, ±4, and ±5.
2) The quantization regions are (−∞, −5], (−5, −4], (−4, −3], (−3, −2], (−2, −1], (−1, 0], (0, 1], (1, 2],
(2, 3], (3, 4], (4, 5], and (5, +∞).
3) The MATLAB function uq_dist.m is used to find the distortion of a uniform quantizer (it is assumed
that the quantization levels are set to the centroids of the quantization regions). uq_dist.m and the function
mse_dist.m called by uq_dist.m are given next
if (c−b<delta*(n−2))
error(’Too many levels for this range.’); return
end
if (s<b)
error(’The leftmost boundary too small.’); return 20
end
if (s+(n−2)*delta>c)
error(’The leftmost boundary too large.’); return
end
args=[ ];
for j=1:nargin−7
args=[args,’,p’,int2str(j)];
end
args=[args,’)’];
a(1)=b; 30
for i=2:n
a(i)=s+(i−2)*delta;
end
a(n+1)=c;
[y,dist]=eval([’mse_dist(funfcn,a,tol’,args]);
144
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
%MSE DIST returns the mean-squared quantization error.
% [Y,DIST]=MSE DIST(FUNFCN,A,TOL,P1,P2,P3)
% funfcn=The distribution function given
% in an m-file. It can depend on up to three
% parameters, p1,p2,p3.
% a=the vector defining the boundaries of the
% quantization regions. (Note: [a(1),a(length(a))]
% is the support of funfcn.)
% p1,p2,p3=parameters of funfcn. 10
% tol=the relative error.
args=[ ];
for n=1:nargin−3
args=[args,’,p’,int2str(n)];
end
args=[args,’)’];
for i=1:length(a)−1
y(i)=eval([’centroid(funfcn,a(i),a(i+1),tol’,args]);
end 20
dist=0;
for i=1:length(a)−1
newfun = ’x_a2_fnct’ ;
dist=dist+eval([’quad(newfun,a(i),a(i+1),tol,[ ],funfcn,’, num2str(y(i)), args]);
end
Problem 7.3
In order to design a a Lloyd-Max quantizer, the m-file lloydmax.m given next is used
function [a,y,dist]=lloydmax(funfcn,b,n,tol,p1,p2,p3)
%LLOYDMAX returns the the Lloyd-Max quantizer and the mean-squared
% quantization error for a symmetric distribution
% [A,Y,DIST]=LLOYDMAX(FUNFCN,B,N,TOL,P1,P2,P3).
% funfcn=the density function given
% in an m-file. It can depend on up to three
% parameters, p1,p2,p3.
% a=the vector giving the boundaries of the
% quantization regions.
% [-b,b] approximates support of the density function. 10
% n=the number of quantization regions.
% y=the quantization levels.
% p1,p2,p3=parameters of funfcn.
% tol=the relative error.
args=[ ];
for j=1:nargin−4
args=[args,’,p’,int2str(j)];
end
args=[args,’)’]; 20
v=eval([’variance(funfcn,-b,b,tol’,args]);
a(1)=−b;
145
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
d=2*b/n;
for i=2:n
a(i)=a(i−1)+d;
end
a(n+1)=b;
dist=v;
[y,newdist]=eval([’mse_dist(funfcn,a,tol’,args]);
while(newdist<0.99*dist), 30
for i=2:n
a(i)=(y(i−1)+y(i))/2;
end
dist=newdist;
[y,newdist]=eval([’mse_dist(funfcn,a,tol’,args]);
end
1) Using b = 10, n = 10, tol = 0.01, p1 = 0, and p2 = 1 in lloydmax.m, we obtain the quantization
boundaries and quantization levels vectors a and y as
Problem 7.4
The m-file u_pcm.m given next takes as its input a sequence of sampled values and the number of desired
quantization levels and finds the quantized sequence, the encoded sequence, and the resulting SQNR (in
decibels).
amax=max(abs(a)); 10
a quan=a/amax;
b quan=a quan;
d=2/n;
q=d.*[0:n−1];
q=q−((n−1)/2)*d;
for i=1:n
a quan(find((q(i)−d/2 <= a quan) & (a quan <= q(i)+d/2)))=. . .
q(i).*ones(1,length(find((q(i)−d/2 <= a quan) & (a quan <= q(i)+d/2))));
b quan(find( a quan==q(i) ))=(i−1).*ones(1,length(find( a quan==q(i) )));
end 20
a quan=a quan*amax;
nu=ceil(log2(n));
code=zeros(length(a),nu);
for i=1:length(a)
for j=nu:−1:0
146
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
1
8−level
0.8 16−level
0.6
amplitude 0.4
0.2
−0.2
−0.4
−0.6
−0.8
−1
0 2 4 6 8 10
t
Figure 119: Uniform PCM for a sinusoidal signal using 8 and 16 levels
if ( fix(b quan(i)/(2ˆj)) == 1)
code(i,(nu−j)) = 1;
b quan(i) = b quan(i) − 2ˆj;
end
end 30
end
sqnr=20*log10(norm(a)/norm(a−a quan));
1) We arbitrarily choose the duration of the signal to be 10 s. Then using the u_pcm.m m-file, we generate
the quantized signals for the two cases of 8 and 16 quantization levels. The plots are shown in Figure 119.
2) The resulting SQNRs are 18.8532 dB for the 8-level PCM and 25.1153 dB for the 16-level uniform PCM.
A MATLAB script for this problem is shown next.
147
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
3
input sequence 1
−1
−2
−3
0 100 200 300 400 500
m
[sqnr8,aquan8,code8]=u pcm(a,8);
[sqnr16,aquan16,code16]=u pcm(a,16);
pause % Press a key to see the SQNR for N = 8.
sqnr8
pause % Press a key to see the SQNR for N = 16.
sqnr16 10
pause % Press a key to see the plot of the signal and its quantized versions.
plot(t,a,’-’,t,aquan8,’-.’,t,aquan16,’-’,t,zeros(1,length(t)))
Problem 7.5
1) The plot of 500 point sequence is given in Figure 120
2) Using the MATLAB function u_pcm.m given in Computer Problem 7.4, we find the SQNR for the 64-level
quantizer to be 31.66 dB.
3) Again by using the MATLAB function u_pcm.m, the first five values of the sequence, the corresponding
quantized values, and the corresponding PCM codewords are given as
148
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
0.05
0.04
0.03
quantization error
0.02
0.01
−0.01
−0.02
−0.03
−0.04
−0.05
0 100 200 300 400 500
m
Problem 7.6
1) This question is solved by using the m-file mula_pcm.m, which is the equivalent of the m-file u_pcm.m
when using a µlaw PCM scheme. This file is given next
149
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
% a=input sequence.
% n=number of quantization levels (even).
% sqnr=output SQNR (in dB).
% a quan=quantized output before encoding.
% code=the encoded output.
[y,maximum]=mulaw(a,mu); 10
[sqnr,y q,code]=u pcm(y,n);
a quan=invmulaw(y q,mu);
a quan=maximum*a quan;
sqnr=20*log10(norm(a)/norm(a−a quan));
The two m-files mulaw.m and invmulaw.m given below implement µ-law nonlinearity and its inverse.
signum.m function that finds the signum of a vector is also given next.
function [y,a]=mulaw(x,mu)
%MULAW mu-law nonlinearity for nonuniform PCM
% Y=MULAW(X,MU).
% X=input vector.
a=max(abs(x));
y=(log(1+mu*abs(x/a))./log(1+mu)).*signum(x);
function x=invmulaw(y,mu)
%INVMULAW the inverse of mu-law nonlinearity
%X=INVMULAW(Y,MU) Y=normalized output of the mu-law nonlinearity.
x=(((1+mu).ˆ(abs(y))−1)./mu).*signum(y);
function y=signum(x)
%SIGNUM finds the signum of a vector.
% Y=SIGNUM(X)
% X=input vector
y=x;
y(find(x>0))=ones(size(find(x>0)));
y(find(x<0))=−ones(size(find(x<0)));
y(find(x==0))=zeros(size(find(x==0)));
10
Let the vector a be the vector of length 500 generated according to N (0, 1); that is, let
a = randn(1, 500)
Then by using
[dist,a_quan,code] = mula_pcm(a, 16, 255)
we can obtain the quantized sequence and the SQNR for a 16-level quantization. Plots of the input–output
relation for the quantizer and the quantization error are given in Figures 122, 123, and 124.
150
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
0.8
0.6
0.4
0.2
quantization error
−0.2
−0.4
−0.6
−0.8
−1
0 100 200 300 400 500
m
2.5
1.5
1
quantizer output
0.5
−0.5
−1
−1.5
−2
−2.5
−3 −2 −1 1510 1 2 3
quantizer input
Figure 122: Quantization error and quantizer input–output relation for a 16-level µ-law PCM
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
0.3
0.2
−0.1
−0.2
−0.3
−0.4
0 100 200 300 400 500
m
1
quantizer output
−1
−2
−3
−3 −2 −1 1520 1 2 3
quantizer input
Figure 123: Quantization error and quantizer input–output relation for a 64-level µ-law PCM
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
0.15
0.1
−0.05
−0.1
−0.15
−0.2
0 100 200 300 400 500
m
1
quantizer output
−1
−2
−3
−3 −2 −1 1530 1 2 3
quantizer input
Figure 124: Quantization error and quantizer input–output relation for a 128-level µ-law PCM
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
Using mula_perm.m, the SQNR is found to be 13.96 dB. For the case of 64 levels we obtain SQNR = 26.30
dB, and for 128 levels we have SQNR = 31.49 dB.
154
© 2007 Pearson Education, Inc., Upper Saddle River, NJ. All rights reserved. This material is protected under all copyright laws
as they currently exist. No portion of this material may be reproduced, in any form or by any means, without permission in
writing from the publisher.
Exploring the Variety of Random
Documents with Different Content
group, while Saturn, Uranus and Neptune have smaller retinues.
There can be no question that a comet of first-class splendour, such
as that of 1811, that of 1858, or that of 1861, is one of the most
impressive spectacles that the heavens have to offer. Unfortunately it
is one which the present generation, at least in the northern
hemisphere, has had but little opportunity of witnessing. Chambers
notices 'that it may be taken as a fact that a bright and conspicuous
comet comes about once in ten years, and a very remarkable comet
once every thirty years;' and adds, 'tested then by either standard of
words "bright and conspicuous," or "specially celebrated," it may be
affirmed that a good comet is now due.' It is eleven years since that
hopeful anticipation was penned, and we are still waiting, not only
for the 'specially celebrated,' but even for the 'bright and
conspicuous' comet; so that on the whole we may be said to have a
grievance. Still, there is no saying when the grievance may be
removed, as comets have a knack of being unexpected in their
developments; and it may be that some unconsidered little patch of
haze is even now drawing in from the depths which may yet develop
into a portent as wonderful as those that astonished the generation
before us in 1858 and 1861.
In 1868 Sir William Huggins carried the matter one step further by
showing that the spectrum of Winnecke's comet of that year agreed
with that of olefiant gas rendered luminous by electricity; and the
presence of the hydrocarbon spectrum has since been detected in a
large number of comets. The first really brilliant comet to be
analyzed by the spectroscope was Coggia's (1874), and it presented
not only the three bright bands that had been already seen, but the
whole range of five bands characteristic of the hydrocarbon
spectrum. In certain cases, however—notably, that of Holmes's
comet of 1892 and that of the great southern comet of 1901 (Plate
XXV.)—the spectrum has not exhibited the usual bright band type,
but has instead shown merely a continuous ribbon of colour. From
these analyses certain facts emerge. First, that the gaseous
surroundings of comets consist mainly of hydrogen and carbon, and
that in all probability their luminosity is due, not to mere solar heat,
but to the effect of some electric process acting upon them during
their approach to the sun; and second, that, along with these
indications of the presence of luminous hydrocarbon compounds,
there is also evidence of the existence of solid particles, mainly in
the nucleus, but also to some extent in the rest of the comet, which
shine by reflected sunlight. It is further almost certain, from the
observation by Elkin and Finlay of the beginning of the transit of
Comet 1882 (iii.) across the sun's face, that this solid matter is not in
any sense a solid mass. The comet referred to disappeared
absolutely as soon as it began to pass the sun's edge. Had it been a
solid mass or even a closely compacted collection of small bodies it
would have appeared as a black spot upon the solar surface. The
conclusion, then, is obvious that the solid matter must be very thinly
and widely spread, while its individual particles may have any size
from that of grains of sand up to that of the large meteoric bodies
which sometimes reach our earth.
Thus the state of the case as regards the constitution of comets is,
roughly speaking, this: They consist of a nucleus of solid matter,
held together, but with a very slack bond, by the power of
gravitation. From this nucleus, as the comet approaches perihelion,
the electric action of the sun, working in a manner at present
unknown, drives off volumes of luminous gas, which form the tail;
and in some comets the waves of this vapour have been actually
seen rising slowly in successive pulses from the nucleus, and then
being driven backwards much as the smoke of a steamer is driven. It
has been found also by investigation of Comet Wells 1882 and the
Great Comet of 1882 that in some at least of these bodies sodium
and iron are present.
Meanwhile, the question of the 1843 and 1880 comets was still
unsettled, and it received a fresh complication by the appearance of
the remarkable comet of 1882, whose transit of the sun has been
already alluded to, for the orbit of this new body proved to be a
reproduction, almost, but not quite exact, of those of the previous
two. Astronomers were at a greater loss than ever, for if this were a
return of the 1880 comet, then the conclusion followed that
something was so influencing its orbit as to have shortened its
period from thirty-seven to two years. The idea of the existence of
some medium round the sun, capable of resisting bodies which
passed through it, and thus causing them to draw closer to their
centre of attraction and shortening their periods, was now revived,
and it seemed as though, at its next return, this wonderful visitant
must make the final plunge into the photosphere, with what
consequences none could foretell. These forebodings proved to be
quite baseless. The comet passed so close to the sun (within
300,000 miles of his surface), that it must have been sensibly
retarded at its passage by the resisting medium, had such a thing
existed; but not the slightest retardation was discernible. The comet
suffered no check in its plunge through the solar surroundings, and
consequently the theory of the resisting medium may be said to
have received its quietus.
Computation showed that the 1882 comet followed nearly the same
orbit as its predecessors; and thus we are faced by the fact of
families of comets, travelling in orbits that are practically identical,
and succeeding one another at longer or shorter intervals. The idea
that these families have each sprung from the disruption of some
much larger body seems to be most probable, and it appears to be
confirmed by the fact that in the 1882 comet the process of further
disruption was actually witnessed. Schmidt of Athens detected one
small offshoot of the great comet, which remained visible for several
days. Barnard a few days later saw at least six small nebulous bodies
close to their parent, and a little later Brooks observed another.
'Thus,' as Miss Agnes Clerke remarks, 'space appeared to be strewn
with the filmy débris of this beautiful but fragile structure all along
the track of its retreat from the sun.'
1 2
We turn now to those bodies which, as has been pointed out, appear
to be the débris of comets which have exhausted their cometary
destiny, and ceased to have a corporate existence. Everyone is
familiar with the phenomenon known as a meteor, or shooting-star,
and there are few clear nights on which an observer who is much in
the open will not see one or more of these bodies. Generally they
become visible in the form of a bright point of light which traverses
in a straight line a longer or shorter path across the heavens, and
then vanishes, sometimes leaving behind it for a second or two a
faintly luminous train. The shooting-stars are of all degrees of
brightness, from the extremely faint streaks which sometimes flash
across the field of the telescope, up to brilliant objects, brighter than
any of the planets or fixed stars, and sometimes lighting up the
whole landscape with a light like that of the full moon.
The true study of meteoric astronomy may be said to date from the
year 1833, when a shower of most extraordinary splendour was
witnessed. The magnificence of this display was the means of
turning greater attention to the subject; and it was observed as a
fact, though the importance of the observation was scarcely realized,
that the meteors all appeared to come from nearly the one point in
the constellation Leo. The fact of there being a single radiant point
implied that the meteors were all moving in parallel lines, and had
entered our atmosphere from a vast distance. Humboldt, who had
witnessed a previous appearance of this shower in 1799, suggested
that it might be a periodic phenomenon; and his suggestion was
amply confirmed when in 1866 the shower made its appearance
again in scarcely diminished splendour. Gradually other showers
came to be recognised, and their radiant points fixed; and meteoric
astronomy began to be established upon a scientific basis.
The four outstanding meteor radiants are those named, but there
are very many others. Mr. Denning, to whom this branch of science
owes so much, estimates the number of distinct radiants known at
about 4,400; and it seems likely that every one of these showers,
some of them, of course very feeble, represents some comet
deceased. The history of a meteor shower would appear to be
something like this: When the comet, whose executor it is, has but
recently deceased, it will appear as a very brilliant periodic shower,
occurring on only one or two nights exactly at the point where the
comet in its journeying would have crossed the earth's track, and
appearing only at the time when the comet itself would have been
there. Gradually the meteors get more and more tailed out along the
orbit, as runners of unequal staying powers get strung out over a
track in a long race, until the displays may be repeated, with
somewhat diminished splendour, year after year for several years
before and after the time when the parent comet is due. At last they
get thinly spread out over the whole orbit, and the shower becomes
an annual one, happening each year when the earth crosses the
orbit of the comet. This has already happened to the Perseid
shower; at least 500,000,000 miles of the orbit of Biela's comet are
studded with representatives of the Andromedes; and the Leonid
shower had already begun to show symptoms of the same process
at its appearance in 1866. Readers will remember the
disappointment caused by the failure of the Leonid shower to come
up to time in 1899, and it seems probable that the action of some
perturbing cause has so altered the orbit of this shower that it now
passes almost clear of the earth's path, so that we shall not have the
opportunity of witnessing another great display of the Leonid
meteors.
We now leave the bounds of our own system, and pass outwards
towards the almost infinite spaces and multitudes of the fixed stars.
In doing so we are at once confronted with a wealth and profusion
of beauty and a vastness of scale which are almost overwhelming.
Hitherto we have been dealing almost exclusively with bodies which,
though sometimes considerably larger than our world, were yet, with
the exception of the sun, of the same class and comparable with it;
and with distances which, though very great indeed, were still not
absolutely beyond the power of apprehension. But now all former
scales and standards have to be left behind, for even the vast orbit
of Neptune, 5,600,000,000 of miles in diameter, shrinks into a point
when compared with the smallest of the stellar distances. Even our
unit of measurement has to be changed, for miles, though counted
in hundreds of millions, are inadequate; and, accordingly, the unit in
which our distance from the stars is expressed is the 'light year,' or
the distance travelled by a ray of light in a year.
The number of the stars is not less amazing than their distance. It is
true that the number visible to the unaided eye is not by any means
so great as might be imagined on a casual survey. On a clear night
the eye receives the impression that the multitude of stars is so
great as to be utterly beyond counting; but this is not the case. The
naked-eye, or 'lucid,' stars have frequently been counted, and it has
been found that the number visible to a good average eye in both
hemispheres together is about 6,000. This would give for each
hemisphere 3,000, and making allowance for those lost to sight in
the denser air near the horizon, or invisible by reason of restricted
horizon, it is probable that the number of stars visible at any one
time to any single observer in either hemisphere does not exceed
2,500. In fact Pickering estimates the total number visible, down to
and including the sixth magnitude, to be only 2,509 for the Northern
Hemisphere, and on that basis it may safely be assumed that 2,000
would be the extreme limit for the average eye.
PLATE XXVII.
Region of the Milky Way in Sagittarius.
Photographed by Professor E. E. Barnard.
It is evident, on the most casual glance at the sky, that in the words
of Scripture, 'One star differeth from another star in glory.' There are
stars of every degree of brilliancy, from the sparkling white lustre of
Sirius or Vega, down to the dim glimmer of those stars which are
just on the edge of visibility, and are blotted out by the faintest wisp
of haze. Accordingly, the stars have been divided into 'magnitudes' in
terms of scales which, though arbitrary, are yet found to be of
general convenience. Stars of the first six magnitudes come under
the title of 'lucid' stars; below the sixth we come to the telescopic
stars, none of which are visible to the naked eye, and which range
down to the very last degree of faintness. Of stars of the first
magnitude there are recognised about twenty, more or less. By far
the brightest star visible to us in the Northern Hemisphere, though it
is really below the Equator, is Sirius, whose brightness exceeds by no
fewer than fourteen and a half times that of Regulus, the twentieth
star on the list. The next brightest stars, Canopus and Alpha
Centauri, are also Southern stars, and are not visible to us in middle
latitudes. The three brightest of our truly Northern stars, Vega,
Capella, and Arcturus, come immediately after Alpha Centauri, and
opinions are much divided as to their relative brightness, their
diversity in colour and in situation rendering a comparison somewhat
difficult. The other conspicuous stars of the first magnitude visible in
our latitudes are, in order of brightness, Rigel, Procyon, Altair,
Betelgeux, Aldebaran, Pollux, Spica Virginis, Antares, Fomalhaut,
Arided (Alpha Cygni), and Regulus, the well-known double star
Castor following not far behind Regulus. The second magnitude
embraces, according to Argelander, 65 stars; the third, 190; fourth,
425; fifth, 1,100; sixth, 3,200; while for the ninth magnitude the
number leaps up to 142,000. It is thus seen that the number of stars
increases with enormous rapidity as the smaller magnitudes come
into question, and, according to Newcomb, there is no evidence of
any falling off in the ratio of increase up to the tenth magnitude. In
the smaller magnitudes, however, the ratio of increase does not
maintain itself. The number of the stars, though very great, is not
infinite.
When examined with any telescopic power, the Milky Way reveals
itself as a wonderful collection of stars and star-clusters; and it will
also be found that there is a very remarkable tendency among the
stars to gather in the neighbourhood of this great starry belt. So
much is this case that, in the words of Professor Newcomb, 'Were
the cloud-forms which make up the Milky Way invisible to us, we
should still be able to mark out its course by the crowding of the
lucid stars towards it.' Not less remarkable is the fact that the
distribution of the nebulæ with regard to the Galaxy is precisely the
opposite of that of the stars. There are, of course, many nebulæ in
the Galaxy; but, at the same time, they are comparatively less
numerous along its course, and grow more and more numerous in
proportion as we depart from it. It seems impossible to avoid the
conclusion that these twin facts are intimately related to one
another, though the explanation of them is not yet forthcoming.
What the telescope does with Epsilon Lyræ, it does with a great
multitude of other stars. There are thousands of doubles of all
degrees of easiness and difficulty—doubles wide apart, and doubles
so close that only the finest telescopes in the world can separate
them; doubles of every degree of likeness or of disparity in their
components, from Alpha Geminorum (Castor), with its two beautiful
stars of almost equal lustre, to Sirius, where the chief star is the
brightest in all the heavens, and the companion so small, or rather
so faint, that it takes a very fine glass to pick it out in the glare of its
great primary. The student will find in these double stars an
extremely good series of tests for the quality of his telescope. They
are, further, generally objects of great beauty, being often
characterized, as already mentioned, by diversity of colour in the two
components. Thus, in addition to the examples given above, Eta
Cassiopeiæ presents the beautiful picture of a yellow star in
conjunction with a red one, while Epsilon Boötis has been described
as 'most beautiful yellow and superb blue,' and Alpha Herculis
consists of an orange star close to one which is emerald green. It
has been suggested that the colours in such instances are merely
complementary, the impression of orange or yellow in the one star
producing a purely subjective impression of blue or green when the
other is viewed; but it has been conclusively proved that the colours
of very many of the smaller stars in such cases are actual and
inherent.
Not only are there thousands of double stars in the heavens, but
there are also many multiple stars, where the telescope splits an
apparently single star up into three, four, or sometimes six or seven
separate stars. Of these multiples, one of the best known is Theta
Orionis. It is the middle star of the sword which hangs from the belt
of Orion, and is, of course, notable from its connection with the
Great Nebula; but it is also a very beautiful multiple star. A 2½-inch
telescope will show that it consists of four stars in the form of a
trapezium; large instruments show two excessively faint stars in
addition. Again, in the same constellation lies Sigma Orionis,
immediately below the lowermost star of the giant's belt. In a 3-inch
telescope this star splits up into a beautiful multiple of six
components, their differences in size and tint making the little group
a charming object.
The star which has the shortest period at present known is the
fourth magnitude Delta Equulei, which has a fifth magnitude
companion. The pair complete their revolution, according to Hussey,
in 5·7 years. Kappa Pegasi comes next in speed of revolution, with a
period of eleven and a half years, while the star 85 of the same
constellation takes rather more than twice as long to complete its
orbit. From such swiftly circling pairs as these, the periods range up
to hundreds of years. Thus, for example, the well-known double star
Castor, probably the most beautiful double in the northern heavens,
and certainly the best object of its class for a small telescope, is held
to have a period of 347 years, which, though long enough, is a
considerable reduction upon the 1,000 once attributed to it.
But the number of binary stars known is not confined to those which
have been discovered and measured by means of the telescope and
micrometer. One of the most wonderful results of modern
astronomical research has been the discovery of the fact that many
stars have revolving round them invisible companions, which are
either dark bodies, or else are so close to their primaries as for ever
to defy the separating powers of our telescopes. The discovery of
these dark, or at least invisible, companions is one of the most
remarkable triumphs of the spectroscope. It was in 1888 that Vogel
first applied the spectroscopic method to the well-known variable
star, Beta Persei—known as Algol, 'the Demon,' from its 'slowly-
winking eye.' The variation in the light of Algol is very large, from
second to fourth magnitude; Vogel therefore reasoned that if this
variation were caused by a dark companion partially eclipsing the
bright star, the companion must be sufficiently large to cause motion
in Algol—that is, to cause both stars to revolve round a common
centre of gravity. Should this be the case, then at one point of its
orbit Algol must be approaching, and at the opposite point receding
from the earth; and therefore the shift of the lines of its spectrum
towards the violet in the one instance and towards the red in the
other would settle the question of whether it had or had not an
invisible companion. The spectroscopic evidence proved quite
conclusive. It was found that before its eclipses, Algol was receding
from the sun at the rate of 26⅓ miles per second, while after eclipse
there was a similar motion of approach; and therefore the
hypothesis of an invisible companion was proved to be fact. Vogel
carried his researches further, his inquiry into the questions of the
size and distance apart of the two bodies leading him to the
conclusion that the bright star is rather more, and its companion
rather less than 1,000,000 miles in diameter; while the distance
which divides them is somewhat more than 3,000,000 miles. Though
larger, both bodies prove to be less massive than our sun, Algol
being estimated at four-ninths and its companion at two-ninths of
the solar mass.
Not less interesting are those stars whose variations cover only short
periods, extending from less than thirty days down to a few hours.
Of these, perhaps the most easily observed, as it is also one of the
most remarkable, is Beta Lyræ. This star is one of the two bright
stars of nearly equal magnitude which form an obtuse-angled
triangle with the brilliant first-magnitude star Vega. The other star of
the pair is Gamma Lyræ, and between them lies the famous Ring
Nebula, to be referred to later. Ordinarily Beta Lyræ is of magnitude
3·4, but from this it passes, in a period of rather less than thirteen
days, through two minima, in one of which it descends to magnitude
3·9 and in the other to 4·5. This fluctuation seems trifling. It really
means, however, that at maximum the star is two and three-quarter
times brighter than when it sinks to magnitude 4·5; and the
variation can be easily recognised by the naked eye, owing to the
fact of the nearness of so convenient a comparison star as Gamma
Lyræ. Beta Lyræ is a member of the class of spectroscopic binaries,
and belongs to that type of the class in which the mutually eclipsing
bodies are both bright. In such cases the variation in brilliancy is
caused by the fact that when the two bodies are, so to speak, side
by side, light is received from both of them, and a maximum is
observed; while, when they are end on, both in line with ourselves,
one cuts off more or less of the other's light from us, thus causing a
minimum.
The first Nova, of which we have a really scientific record, was the
star which suddenly blazed out, in November, 1572, in the familiar W
of Cassiopeia. It was carefully observed by the great astronomer,
Tycho Brahé, and, according to him, was brighter than Sirius, Alpha
Lyræ, or Jupiter. Tycho followed it till March, 1574, by which time it
had sunk to the limit of unaided vision, and further observation
became impossible. There is at present a star of the eleventh
magnitude close to the place fixed for the Nova from Tycho's
observations. In 1604 and 1670, new stars were observed, the first
by Kepler and his assistants, the second by the monk Anthelme; but
from 1670 there was a long break in the list of discoveries, which
was ended by Hind's observation of a new star in Ophiuchus (April,
1848). This was never a very conspicuous object, rising only to
somewhat less than fourth magnitude, and soon fading to tenth or
eleventh. We can only mention the 'Blaze Star' of Corona Borealis,
discovered by Birmingham in 1866, the Nova discovered in 1876 by
Schmidt of Athens, near Rho Cygni—an object which seems to have
faded out into a planetary nebula, a fate apparently characteristic of
this class of star—and the star which appeared in 1885, close to the
nucleus of the Great Nebula in Andromeda.