answersLogoWhite

0


Best Answer

No.

A 3x3 matrix A is a representation of a linear map \alpha : \mathbb{R}^3 \longrightarrow \mathbb{R}^3 .

For any linear map T : U \longrightarrow V ,

we have the rank-nullity theorum:

rank(T)+nullity(T) = dim(U)

where the rank and nullity are the dimensions of the image and kernal of T respectively.

Im(T) = ker(T) \Rightarrow rank(T) = nullity(T) = m, say

for some non-negative integer m. Then the rank-nullity theorum implies that dim(U)=2m.

The image and kernal of a matrix A are the same as those for the corresponding basis-free linear map \alpha .

For a 3x3 matrix, dim(U) = 3, so there are no such matrices (since 3 is odd).

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Are the image and kernel of a 3x3 matrix ever equal If so give an example?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which is the Linux kernel image file from the following and what is location in the file system?

The kernel image is the file in /boot that has a name like "vmlinuz" in it.


What is meant by a kernel in image processing?

A kernel is defined as a small central part of something. In the case of image processing it is a tool used to edit the image by sharpening, blurring , embossing it, and so on.


What is the determinant of matrix image?

1


What does this mean SYSLINUX 3.72 could not find kernel image?

It means exactly what it says. The bootloader, SYSLINUX, could not find a kernel image on the boot media, thus it cannot boot the operating system.


How do you get neo on enter the matrix?

You can't get Neo You can only see the image of him.


How matlab is used in imageprocessing?

Matlab is useful in image processing in order to convert the image into a matrix and make several operations on it.


What is loading of modules dynamically in monolithic kernel?

The loading of modules dynamically in monolithic kernel is done at the binary level as opposed to the architectural level. Dynamically loading modules is a more flexible way of handling the operating system image at runtime - as opposed to rebooting with a different operating system image.


Printer uses striking force to create the image and is noisy?

a dot matrix printer


What is the difference between guassian laplacian and gabor pyramids?

It is simple - An input image is subsampled in the same way - the only difference is that a smoothing kernel one might use, which is {gaussian, laplacian, or gabor kernel}. Hope this helps!


What is gabor pyramid?

The gabor pyramid is use gabor kernel to convolution with image intensity and then down sample to get different level pyramid.


What is an example of a three dimensional image?

A cube the simplest and oldest example of a three dimentional image


What is the kernel file normally named?

It varies from system to system, based on what the distributors call it and if you run a custom kernel or not, but the file will usually at least have vmlinuz as part of the name. This means it runs on its own virtual machine and is compressed. Also, there will likely be a ramdisk image accompanying the kernel that will contain necessary drivers and configuration files for the kernel to be able to read and run what's on your hard disk. Remember that the kernel file is an IMAGE, not an executable binary. That means its meant to basically be copied straight into memory unmodified and manipulated from there before execution. You, the user will not be able to modify it very easily. IF your goal is a custom kernel, then get the source code for the kernel, introduce your patches, do your configuration, and build it. If your goal is in seeing what the kernel is "thinking" at any point in time, you'd be best looking at the contents of the /proc and /sys directories, which give you a peek into the innards of the systems current operation, as they are virtual filesystems that base themselves off of the current state of the kernel. You can also normally grab your current kernel's configuration by copying out /proc/config.gz and decompressing it. It will be a plaintext file you can read and write.